In my opinion the website would look much better with calibri as the first font in the CSS font-family attribute. What do you think?
This is a screenshot after some firebug hackery (remember to zoom in and see it at 100% zoom), this is the normal one. Note that I simply changed a couple of things without giving it much thought, probably a much better job could be done.
EDIT: Jeff's answer is a valid issue, but I think it can be fixed fairly easily with the jQuery font.isInstalled plugin, that allows you to check whether the user has or doesn't have a certain font through javascript.
Then you can add the following code that adds the calibri.css style if a user has the font:
$(document).ready(function () {
if (font.isInstalled("Calibri"))
ImportCss("calibri.css");
});
function ImportCss(name) {
if (document.createStyleSheet) {
document.createStyleSheet('/static/' + name);
}
else {
var styles = '/static/' + name;
var newSS = document.createElement('link');
newSS.rel = 'stylesheet';
newSS.type = 'text/css';
newSS.href = styles;
document.getElementsByTagName("head")[0].appendChild(newSS);
}
}
Then, in calibri.css you can have - for example -:
body
{
font-family: Calibri;
font-size: 16px;
}
caption, h1, h2
{
font-family: Candara, Calibri;
}
And have this in your main css file:
body
{
font-family: Arial, Sans-Serif;
font-size: 13px;
}
So if someone doesn't have calibri (or javascript enabled) they will see the website with the current font and the right size. If someone does have calibri, calibri.css will be imported and both the font and the size will be changed.
This is what I do on my website, and it works pretty well.