> For the complete documentation index, see [llms.txt](https://supernova-developers.gitbook.io/supernova-dsm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://supernova-developers.gitbook.io/supernova-dsm/design-system-data/tokens/fonts.md).

# Font

Font tokens define one single font, such as `Lato` or `Arial` .

### Example Token Payload

This is what the color payload looks like:

```javascript
{
  "id": string
  "name": string
  "description": string
  "tokenType": "Font"
  "origin": ItemOrigin | null
  "value": {
    "family": "Lato"
    "subfamily": "bold"
    "referencedToken": Font | null
  }
}
```

### Associated functions

You can use the following functions to retrieve font tokens from your design system:

* [@ds.allTokens](/supernova-dsm/design-system-data/function-list.md#ds-alltokens)
* [@ds.tokensByType](/supernova-dsm/design-system-data/function-list.md#ds-tokensbytype) (with `"Font"`) attribute
* [@ds.tokensByGroupId](/supernova-dsm/design-system-data/function-list.md#ds-tokensbygroupid)
