Had to try and get some custom fonts working on a Blackberry specific website today and couldn’t find much official guidance or help via Google searches so thought this might help someone. The Blackberry browser on BB OS5, 6 and 7 only supports SVG font files (you can use fontsquirrel to convert from other formats). Unfortunately SVGZ (gzipped SVG) doesn’t seem to work from my testing.
@font-face {
font-family: 'TimesModernCondensed';
src: url('../fonts/timesmodconlightdc-webfont.svg#TimesModernCondensedDCCnLtDC') format('svg');
font-weight: normal;
font-style: normal;
}
N.B: Don’t be tempted to change the text after the ‘#’ as this has to reference the embedded font name within the file. Font Squirrel gets this automatically, leave it as it is or you’ll cause yourself unnecessary pain like I went through…





