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?
@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]