DevLink Export includes every font your Webflow site uses. There are three kinds: Google, Adobe (Typekit), and custom uploaded fonts. Each ships a little differently.
For Google and Adobe fonts, <DevLinkProvider> injects the WebFont Loader and the Adobe kit script at runtime, using the same approach as a published Webflow site.
No setup is required. Google serves Google Fonts without any domain restriction, so they render the same way on localhost, *.vercel.app, and your production domain.
If the Google Fonts script fails to load, DevLink logs a single console warning pointing at Content Security Policy as the most common cause. If your app enforces a strict CSP, allow:
script-src https://ajax.googleapis.comstyle-src https://fonts.googleapis.comfont-src https://fonts.gstatic.comAdobe Fonts enforces a domain allowlist per web project. Webflow automatically adds your *.webflow.io staging subdomain to the allowlist.
Webflow cannot register the domain where your DevLink-powered app will run. You need to add your deployment domains to Adobe Fonts manually before your fonts will render.
When a browser requests your kit (https://use.typekit.net/<kitId>.js), Adobe checks the request’s origin against this allowlist. Unregistered origins get a 403 and fonts fall back to the next family in the CSS stack.
If the Adobe Fonts script fails to load, DevLink logs a single actionable console warning pointing at the allowlist and at CSP (script-src https://use.typekit.net, font-src https://use.typekit.net https://p.typekit.net). The warning fires only on actual failure, so correctly configured consumers see no noise.
Fonts you uploaded in Site Settings → Fonts → Custom Fonts (any .woff, .woff2, .ttf, or .otf files) ship as pure CSS. The exporter writes an @font-face block for each weight and style variant into css/fonts.css, with src URLs pointing at Webflow’s CDN:
No JavaScript runs for custom fonts, no scripts are injected, and <DevLinkProvider> is not involved. The browser loads them the same way it loads any other external CSS asset.
What you need to know:
font-src (and style-src if your CSS is inline). The exact hostname is visible in the @font-face src URL in your synced css/fonts.css.webflow devlink export to pick up the new URLs.Issue: Adobe fonts fail to render, often with Failed to load https://use.typekit.net/... in the browser console.
Solutions:
Issue: Certain Adobe fonts are missing after a kit change.
Solutions:
webflow devlink export after adding or removing fonts from the kit in the Webflow Designer so the manifest picks up the new families.Issue: A custom font fails to load from Webflow’s CDN.
Solutions:
webflow devlink export to refresh the @font-face URL in css/fonts.css.src URL in css/fonts.css and add it to font-src.