@font-face Syntax
Paul Irish beschreibt seine Methode für eine Bulletproof @font-face syntax
@font-face {
font-family: 'Graublau Web';
src: url('GraublauWeb.eot');
src: local('Graublau Web Regular'), local('Graublau Web'),
url('GraublauWeb.otf') format('opentype');
}
Das Posting erklärt detailliert warum dies die sinnvollste Methode ist und welche Ansätze es noch so gibt.
Und in der Ankündigung zum WOFF Support in Firefox 3.6 fand ich diese Kleinigkeit:
Another problem is that IE currently tries to download all fonts on the page, whether they are used or not. That makes site-wide stylesheets containing all fonts used on site pages difficult, since IE will always try to download all fonts defined in @font-face rules, wasting lots of server bandwidth.

