WAYSCloud Fonts provides a CSS API compatible with the Google Fonts /css2
surface. You link to a single CSS URL and the browser loads the requested
weights and styles from our EU infrastructure.
One-line integration
Add this to your HTML <head>:
<link
href="https://fonts.wayscloud.eu/css2?family=Inter:wght@400;700&display=swap"
rel="stylesheet"
/>
Then use the font in your CSS:
body {
font-family: 'Inter', system-ui, sans-serif;
}
What you get
- WOFF2-only delivery — smaller transfers, modern compression
- No IP, User-Agent, or Referer logging at our edge
- EU-resident infrastructure — no cross-border data hops
font-display: swapbaked into every response — fallback text renders immediately, swap to webfont when loaded- Stable URLs — once a release is active, its URL stays valid
Multiple families
Comma-separate families in the query string:
<link
href="https://fonts.wayscloud.eu/css2?family=Inter:wght@400;700&family=Source+Serif+4:wght@400;700&display=swap"
rel="stylesheet"
/>
Self-hosting
If you prefer to host font binaries yourself, each family on WAYSCloud
includes a bundled license text. Download the font from its upstream
repository (linked on each family’s page), bundle with your build output,
and declare @font-face directly.
This keeps you entirely off WAYSCloud’s edge — which is a valid choice. We also host the fonts for anyone who wants a managed delivery path.