Hi I'm using Mosk font in my web application and hosting those fonts. Fonts seems to be loaded correctly via font face and webpack file-lodader for (.ttfs).
@font-face {
font-family: "Mosk";
src: url(../_assets/fonts/Mosk_Typeface/Mosk_Medium_500.ttf) format("truetype");
font-weight: 500;
}
Webpack file loader for ttfs.
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: [{
loader: 'file-loader',
options: {
name: 'static/media/fonts/[name].[hash:8].[ext]'
}
}]
},
This is how is the font displayed in browsers.
Do you have any suggestions on how to fix it or what could be the issue please?
I partially solved the issue by using another generator but, it's not completely good. I dont know why but the image below as you can see some letters are bolder then others.