Hi,
You may want to look on this page to see what fonts google thinks go with molengo. http://www.google.com/webfonts/specimen/Molengo#pairings
This will require you to add the block of javascript to the header.php file... anywhere before the </head> tag
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Molengo::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);
})(); </script>
Also add this to custom.css or quick css.
body {
font-family: 'Molengo', sans-serif;
}
if that dont work, then you will need to edit style.css , line 59 and just manually replace the font-family name with the Molengo name above the same way I have it .
Thanks,
Nick