Hmm the only thing I can think of is that android can use the .tff
font file. I haven’t used a custom font in some time now so I haven’t had this problem. Depending on your version of android, you may need to provide a different font file.
Like this:
@font-face {
font-family: 'droid_sansregular';
src: url('droidsans-webfont.eot');
src: url('droidsans-webfont.eot?#iefix') format('embedded-opentype'),
url('droidsans-webfont.woff') format('woff'),
url('droidsans-webfont.ttf') format('truetype'),
url('droidsans-webfont.svg#droid_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,{
font-family:droid_sansregular !important;
}
The best thing to get all the versions of the font is to use font squirrel, which is free
Let me know if this helps at all.