@fontface css to local fonts help

Hello and thanks for the help already

So i have a question. I live in germany and out of regulatory reasons i would have to source the fonts locally. How would i go about swapping out all the fonts in my published webflow site?

Currently im using github to test things. Sure i would need to use the font face and swap it out but it still has this CSS uploaded to the publish site. What do i do here? do i go through the process of adding all font-families, editing their url and then deleting the fonts in the settings tab? Doesn’t that remove it from the styling however?

https://uploads-ssl.webflow.com/612e414eb742256f269e0aba/css/test-onservice.webflow.cfa6c0d5d.min.css

@font-face {
  font-family: 'Eudoxussans';
  src: url('https://uploads-ssl.webflow.com/612e414eb742256f269e0aba/612e414eb74225eb139e0ad4_EudoxusSans-ExtraBold.woff') format('woff'), url('https://uploads-ssl.webflow.com/612e414eb742256f269e0aba/612e414eb742253bd79e0b26_EudoxusSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

converted to

@font-face {
  font-family: 'Eudoxussans';
  src: url('https://raw.github.com/imperatorm/onservice/blob/b0c1737a90674db3b870a4763b863b7f6846dc8a/EudoxusSans-Bold.woff2') format('woff2'), url('https://raw.github.com/imperatorm/onservice/blob/b0c1737a90674db3b870a4763b863b7f6846dc8a/EudoxusSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

does this work?
thanks again


Here is my site Read-Only: [Webflow - ON Service][1]

on top of that webflow has added its own google font on top of the header? How and why can they do this ? I cannot seem to remove it

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" media="all"

Hi @Miguel_Bruecker,

You can download the fonts and upload them yourself to Project Settings > Fonts > Custom Fonts.

You can then swap these fonts out with any Google Fonts you have in your project then delete the Google Font from Project Settings > Fonts > Google Fonts > Added Google Fonts

Regarding your project and the Google Fonts script loading on your site, you have Inconsolata set on your ‘Text Block 5’ class:

CleanShot 2022-09-15 at 15.58.06@2x

If you change the font-family on this class or delete the class then republish you should see that the Google Fonts script is no longer loading!

Hope this helps!