Downloaded a font from Google fonts, converted it with fontsquirrel.com's tool, added the following css:
@font-face {
    font-family: 'kaushan_scriptregular';
    src: url('kaushanscript-regular-webfont.eot');
    src: url('kaushanscript-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('kaushanscript-regular-webfont.woff') format('woff'),
         url('kaushanscript-regular-webfont.ttf') format('truetype'),
         url('kaushanscript-regular-webfont.svg#kaushan_scriptregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
The font works perfect in all browsers and devices except on Android smartphones on their standard browser. If I use for instance Chrome for Android, then the font works perfectly. I must refer that I am using Foundation5 and that I already replaced the font-family in all the CSS!
Please note that if the files were not in the right folder or if the CSS @font-face would be wrong, then it wouldn't work on a computer in the first place. Note as well that I have already tried this in other projects with other fonts and it worked fine on Android smartphones.
Anyone knows what the problem might be? Thanks in advance!
