> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# FontDesign

> Specifies the design style of a font.

```typescript theme={null}
type FontDesign = "default" | "serif" | "rounded" | "monospaced";
```

<ParamField path="default" type="string">
  The platform's standard sans-serif font design.
</ParamField>

<ParamField path="serif" type="string">
  A serif font with decorative strokes at letterform endings.
</ParamField>

<ParamField path="rounded" type="string">
  A rounded font with soft terminals for a friendlier appearance.
</ParamField>

<ParamField path="monospaced" type="string">
  A monospaced font where all characters have equal width. Commonly used for code.
</ParamField>
