While browsing your website, I happened to notice that it displayed perfectly on IE8 in compatibility mode on my IE9. There were no font issues at all.
I am using Windows 7. Would you mind sharing a screenshot of the problems you are experiencing?
UPDATE: It slipped my mind to mention an important detail... checking for compatibility. Font-face has only "partial" support in IE7 and IE8.
To resolve this problem, you will need to use a code snippet similar to the one below and convert fonts accordingly
@font-face {
font-family: 'MyFontFamily';
src: url('myfont-webfont.eot?') format('eot'),
url('myfont-webfont.woff') format('woff'),
url('myfont-webfont.ttf') format('truetype'),
url('myfont-webfont.svg#svgFontName') format('svg');
}
Google utilizes woff exclusively, whereas you should include eot, truetype, and svg formats for complete cross-browser compatibility.
You can easily convert fonts using Font Squirrel. Download the font from
For further information on this topic: