Hi, this is due to formatting and wrong code. You have to add the codes for each font separately, then apply it to the headings.
Delete the codes you've added, use this template to add your fonts (don't remove the ' '):
@font-face {
font-family: 'Example';
src: url(‘link’) format('woff');
}
Then, apply the fonts with this code:
h1 {
font-family:‘GT-Zirkon-Regular’;
}
h2 {
font-family:’HKGrotesk-Regular’;
}
h3 {
font-family:’HKGrotesk-Bold’;
}
Let me know how it goes 🙂