# FontSource
Indicates where a font family was loaded from.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## FontSource type

Indicates where a [FontFamily](/en/creator-api/values/font-family) was loaded from.

**Signature:**

```typescript
type FontSource = "PRESET" | "GOOGLE_FONT" | "LOCAL" | "ASSET";
```

## Remarks

- `"PRESET"` — a built-in Creator font.
- `"GOOGLE_FONT"` — loaded from Google Fonts.
- `"LOCAL"` — installed on the user's machine (requires browser permission to enumerate).
- `"ASSET"` — uploaded to the project as a [FontAsset](/en/creator-api/types/font-asset).
