Hi!
I looked at and tested your page, and it looks like the font is not added correctly.
The path to the font is wrong and it results in a 404 (missing page) error.
On the single post, it says:
scripts.js:1 GET https://www.usimon58119.de/2019/08/11/fonts/audiowide-v8-latin-regular.woff2 net::ERR_ABORTED 404 (Not Found)
05:13:06.695 (index):1 GET https://www.usimon58119.de/2019/08/11/fonts/audiowide-v8-latin-regular.woff net::ERR_ABORTED 404 (Not Found)
05:13:06.879 (index):1 GET https://www.usimon58119.de/2019/08/11/fonts/audiowide-v8-latin-regular.ttf 404 (Not Found)
Do you see the date? 2019/08/11/. That should not be in the path.
Try using the full path to the font file, not ../
:
@font-face {
font-family: 'Audiowide';
font-style: normal;
font-weight: 400;
src: url('../fonts/audiowide-v8-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Audiowide Regular'), local('Audiowide-Regular'),
url('../fonts/audiowide-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/audiowide-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/audiowide-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/audiowide-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/audiowide-v8-latin-regular.svg#Audiowide') format('svg'); /* Legacy iOS */
}