Where GilroySB is the name of the font. But not all elements on the site follow it (as in the images). I tried to customize each element separately, but it doesn’t work. Can you tell me how to solve the problem? Elements are displayed in the base font - Assistant
When you assign font-family on the body element it will be inherited by all its children unless there is another rule which specifically applies to these elements.
It’s hard to be precise without seeing your site, but you should try higher specificity selectors, like
body * {
font-family: "GilroySB";
}
or even
body * {
font-family: "GilroySB" !important;
}
which should cover most of cases.
Note that some apps may still add elements which would not follow the rule.