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.
Typekit and Google Fonts
To load a font from Typekit or Google, open the theme CSS editor and follow the instructions in this article:
Importing from another host
Use the CSS editor to import a font from another host. This example loads the "Comfortaa" font from Google Fonts and applies it to all heading elements.
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,300,700);
.slides h1, .slides h2, .slides h3 {
font-family: 'Comfortaa', sans-serif;
}