# Font
A reference to a specific font (family + style).

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

## Font interface

A reference to a specific font, identified by family and style.

**Signature:**

```typescript
interface Font {
  family: string;
  style: string;
}
```

## Example

```ts
const font: Font = { family: "Inter", style: "Bold" };
```
