# Add a custom font to a team theme

[Canonical article](https://slides.com/docs/theme-editor-custom-font)

The theme editor allows you to load custom fonts from Typekit, Google Fonts or your own host. These options are all available through the [theme CSS editor](/docs/theme-editor-css).

## Typekit and Google Fonts
To load a font from Typekit or Google, open the [theme CSS editor](/docs/theme-editor-css) and follow the instructions in this article:

[custom fonts](/docs/custom-fonts)

## Importing from another host

Use the CSS editor to import a font from another host. This example loads the &quot;Comfortaa&quot; font from Google Fonts and applies it to all heading elements.

```css
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,300,700);

.slides h1, .slides h2, .slides h3 {
    font-family: &#39;Comfortaa&#39;, sans-serif;
}
```
