Hi ckubs,
#1. add web font folder
Copy your web font folder to: templates/gk_template/media/fonts/.
#2: embed font
Now go to your primary stylesheet (in this case templates/gk_template/media/css/custom.css (if it doesnβt exist you can create one)) and add the following CSS.
@font-face {
font-family: 'sunset_boulevard';
src: url('../fonts/sunset_boulevard/SunsetBoulevard-Regular.woff2') format('woff2'),
url('../fonts/sunset_boulevard/SunsetBoulevard-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
if you want to apply it on the body, you can just write the following CSS to your stylesheet.
body {
font-family: sunset_boulevard !important;
}