Through the following code inserted in theme.css, the custom font is displayed in my preview but not in other people’s previews:
@font-face {
font-family: "StageGrotesk-Light
src: url(“StageGrotesk-Light.woff2”) format(“woff2”),
url(“StageGrotesk-Light.woff”) format(“woff”);
}
h1,h2,h3,h4,h5,h6,heading-xxsmall,heading-xsmall,heading-small,heading-large,body,tbody,p,a,button,label,nav,span { font-family: “StageGrotesk-Light”!important;
I then tried loading the custom font following this method;
It works in loading the font for me as well as for other people, but it is not applied to all the text on the web
site, e.g. it is not applied to the menu in the header, lists, etc.
I could intervene by calling up all the CSS Selectors but I can’t find them.
Can anyone help me solve this problem? Thank you.


