I'm trying to switch to @font-face instead of relying on users to install the font (more precisely, this is Terminus , but rather its TTF version.)
Unfortunately, I came across some bizarre “bold” or “distorted” fonts when working with remotely hosted files, as shown in this image:

As you can see, for some reason, the deleted fonts are distorted in sizes 12, 14, 16, 18, 20, 24, the local fonts have some kind of "normalization" applied to them for those parts that make them look pretty and in place.
One more note: I tried using the FontSquirrel WebFont Generator , which shows a screenshot of these CSS codes respectively
@font-face { font-family: 'terminus_ttfmedium'; src: url('terminusmedium-4.38-webfont.ttf') format('truetype'); }
and
@font-face { font-family: 'terminus_ttfmedium'; src: local('Terminus (TTF)'); }
Terminus (TTF) is the same package of files just installed on /usr/share/fonts/ .
Any understanding would be greatly appreciated!
EDIT : changing the additional parameters of FontSquirrel does not seem to help this problem at all.
EDIT2 . None of the methods that I tried to use in Firefox worked. In addition, I copied the font to the working directory (the same one that was used locally), linked it through the "url" field and still retains distortion. It's useless!
css firefox fonts font-face chromium
User2121315
source share