I'm trying to set one font family for all text in react like this :
index.css file :
:root {
font-family: 'Vazir', sans-serif !important;
}
But it doesn't apply and I have to apply font-family: 'Vazir', sans-serif !important; to every component css file .
How can I code font family once and it applies to every component text or How can I set a global font family style that applies to all text rendered in react js ?