Foundry — loader demo

The optional one-line embed. By Wandzilak Web Design Studio.

This page loads two families with a single tag — no remote Google call:

<script src="https://foundry.wandzilakwebdesign.com/fonts.js"
        data-families="Inter:400,700|Fraunces:600"
        data-display="swap" defer></script>
Inter

Type, set.

The quick brown fox jumps over the lazy dog. 0123456789

Fraunces

Type, set.

The quick brown fox jumps over the lazy dog. 0123456789

Honest note: the loader's /css endpoint returns @font-face CSS pointing at self-hosted woff2 paths. It does not proxy Google's binaries through our edge — that "served from our edge" mode is a paid convenience. By default you still drop the woff2 files (from the generator) onto your own host.

JavaScript API

Foundry.load('Space Grotesk', { weights: ['400','700'] });
Foundry.ready(function () { console.log('fonts injected'); });

Most sites skip the loader entirely: use the generator to produce the CSS + woff2 files and paste them in. Zero runtime dependency.