Express 3.0 で Google Web フォントを動作させるのに問題があります。
標準的な方法でフォントをロードしてもうまくいかないようです:
link(href='http://fonts.googleapis.com/css?family=Crete+Round')
ただし、次のいずれかの方法でフォントをロードすると問題なく動作します。
script(type="text/javascript")
WebFontConfig = {google: { families: [ 'Crete+Round::latin' ] }};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
また
style
@import url(http://fonts.googleapis.com/css?family=Crete+Round);