A wrapper for the excellent FlowType.JS library
Responsive web typography at its finest: font-size and line-height based on element width.
Check out the demo site.
In Meteor, just use it as you normally would - but in your Templates rendered function
Template.body.rendered = function(e) {
$('body').flowtype({
minimum : 500,
maximum : 1200,
minFont : 12,
maxFont : 40,
fontRatio : 30,
});
}