Hi Guys look around for internet I found, this couple links about how can add fonts in react project, these explain how works
https://scotch.io/@micwanyoike/how-to-add-fonts-to-a-react-project (source => https://scotch.io/)
Defining Custom Fonts in CSS With @font-face and font-display
If you want work directly in css inside of your project you can add this note of post in your “css”, file like this
[cc lang=”javascript”]
@font-face {
font-family: Lato;
src: url(/assets/fonts/Lato.woff2) format(‘woff2’),
url(/assets/fonts/Lato.woff) format(‘woff’),
url(/assets/fonts/Lato.ttf) format(‘truetype’);
}
[/cc]
https://alligator.io/css/font-face/
(source => https://alligator.io/)