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

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.