## Notes
I could use [FontSource](https://fontsource.org) to install the font of my choice in [[bun.sh]] via
```bash
bun add @fontsource-variable/open-sans
```
and then imported the fonts into [[Svelte]]'s `<script>` tag in `+layout.svelte` using the `@global()` function via
```javascript
// +layout.svelte
<style>
@global(body) {
font-family: "Open Sans Variable", sans-serif;
}
</style>
```