Actually, there's only a total of 3 fonts that would be requested on your page. Nowhere on your page would you be required to load up sansreg. You've set it to appear on label's (of which there are none) and h5's - of which there is one, but it is in your footer and has an overridden style to use sansbold as it's font instead. Hence, sansreg will never be required by the browser.
This still leaves you with the problem of why sansbold isn't downloading. I wonder if it's because of a syntax reason? You're missing a couple of semi-colons after font-style: normal in your @font-face (including one right before sansbold).
That seems like it might be a stretch. What if you use <link> to embed the CSS rather than using @import? Does that make a difference?
I've switched careers...
I'm NO LONGER a scientist,
but now a web developer...
awesome.
the last semi colon before the closing brace isn't required (just as in javascript), so those have been left out on purpose.
The solution I've found that works is to freshly download the fonts from font-squirrel where they originated from and link to the style sheet that came with the files in the original css file like @import "../../files/fonts/stylesheet.css";
Bookmarks