I've been scouring the internet in search of an answer to this dilemma, yet my quest has proved futile. Within my style.css file, I've utilized @font-face to incorporate a font (which I previously uploaded to my website's server) on my site. I believe I followed the correct steps, but alas, the chosen font fails to make an appearance on the webpage.
Here is the snippet from my style.css:
@font-face { font-family: Brandon Grotesque; src: url('BGREG.otf'); }
@font-face { font-family: Brandon Grotesque; font-weight: bold; src: url('BGBOLD.otf');}
Where have I gone wrong? Is there additional code that needs to be added?