@font-face in Acuity's CSS editor with the URLs to enable the custom font.To use custom fonts from Webflow in Acuity Scheduling, you'll need to manually upload the font files since direct URLs aren't typically exposed by Webflow for external use. Here’s how you can achieve this:
@font-face rule like so:```
@font-face {
font-family: 'HK Grotesk';
src: url('URLTOWOFF_FILE') format('woff'),
url('URLTOWOFF2_FILE') format('woff2');
font-weight: normal;
font-style: normal;
}
```
URLTOWOFF_FILE and URLTOWOFF2_FILE with the actual URLs for the font files.
To embed Webflow's HK Grotesk in Acuity Scheduling, download the font from Webflow, host the files publicly, create @font-face rules in Acuity's CSS, replacing placeholders with your URLs. This ensures the font loads correctly in your Acuity interface.