Webflow sync, pageviews & more.
NEW

What is the URL of the custom fonts from Webflow, such as 'HK Grotesk', that can be obtained for use in the CSS Editor of Acuity Scheduling?

TL;DR
  • Webflow-hosted fonts like ‘HK Grotesk’ can't be used externally due to access restrictions and licensing.
  • Instead, use a Google Fonts alternative like "Work Sans" or host HK Grotesk yourself with a proper license and reference it in your CSS.

Webflow does not provide direct public URLs to custom fonts like ‘HK Grotesk’ for use outside of its platform, including in third-party apps such as Acuity Scheduling.

However, here's how to handle this:

1. Understand Webflow Font Usage Limitations

  • Fonts uploaded to Webflow are hosted for use only within Webflow websites.
  • There is no public font CDN or predictable URL structure that guarantees access to fonts like HK Grotesk from outside Webflow.
  • Using Webflow's internally hosted fonts on a service like Acuity would violate their usage policies and may not work due to CORS restrictions.

2. Use Google Fonts Instead (if applicable)

  • If the font you want is available on Google Fonts, you can use its public URL with Acuity easily.

  • Example for HK Grotesk substitute: Use "Assistant" or "Work Sans" from Google Fonts, which have a similar clean grotesk aesthetic.

    Example:

    • Add this in your CSS editor:
      @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');
    • Then set:
      font-family: 'Work Sans', sans-serif;

3. Use a Licensed Font Host for HK Grotesk

  • If you have a proper license for HK Grotesk, you can:
  • Host it on your own server or
  • Use a font service like Adobe Fonts or a self-hosted type service.
  • Then reference that URL in your Acuity CSS editor like:
    @font-face { font-family: 'HK Grotesk'; src: url('YOUR_FONT_HOST_URL.woff2') format('woff2'); }

4. Avoid Using Webflow Font URLs Externally

  • Webflow doesn't support exporting or deep-linking to uploaded fonts for external use.
  • Even if you find the internal Webflow URL (e.g., https://cdn.prod.website-files.com/...), it can break or be blocked due to CORS policies or project resets.

Summary

You cannot reliably use Webflow-hosted fonts like ‘HK Grotesk’ in Acuity Scheduling. To use that font, host it yourself with proper licensing or choose an alternative from Google Fonts that is suitable and freely available.

Rate this answer

Other Webflow Questions