惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

Example blog

Ghost routing explained with routes.yaml examples — routes, collections & taxonomies Ghost redirects explained with practical redirects.yaml examples How to Serve JSON or XML Data in Ghost How to Change Your Default Post Template in Ghost Ghost Custom Theme Settings How to Configure Ghost with Mailgun Ghost Theme Structure & Organization How to Make Custom Templates in Ghost Themes How to Install Ghost CMS via Ghost-CLI How to Add Syntax Highlighting to Ghost The best Ghost CMS hosting platforms Ghost 6.0 — Social Web and Native Ghost Analytics Ghost CMS Social web beta, email 2FA and more author social links How to keep custom design settings when updating your Ghost theme How to use the public preview card in Ghost How to add members-specific sections in Ghost How to customize the default content CTA in Ghost How to build a custom homepage in Ghost An overview of Ghost editor cards and and how they work Ghost CMS News: One-time payments & collecting sales tax How to customize the private site access template in Ghost How to add custom fonts in Ghost themes Ghost CMS News: Additional payment methods & internal linking How to use Code Injection in Ghost How to set meta data of your custom routes & collections in Ghost Ghost CMS News: TK reminders, ActivityPub and improvements How to format dates and use the date helper in Ghost Ghost CMS internationalization, custom fonts & spam protection Understanding and optimizing post and page settings in Ghost CMS Trigger the Ghost Portal popup based on page scroll progress
How to add Google Fonts to Ghost Themes
Bright Themes · 2026-03-27 · via Example blog

Google Fonts is one of the most popular services when it comes to adding custom fonts to websites. In fact, most of our Ghost Themes use Google Fonts.

In this post, you'll learn how to add Google Fonts to Ghost without hurting performance.

Choose the Font

Google Fonts offers a large library of fonts, and you can filter by:

  • Categories (Serif, Sans Serif, Display, Handwriting, Mono space)
  • Language (if you want to support language with special characters)
  • Font Properties (thickness, slant, width)
  • Variable Fonts

Variable Fonts can significantly reduce the size of your font files and make it possible for one font file to behave like multiple fonts, allowing you to adjust the weight, width and slant of type as you work. For more about Variable Fonts you can read this guide.

After you have selected the font with all the variants, weights and styles, in the Selected Family section you can press Embed and there you should find the code for embedding.

Google Fonts Embed
Google Fonts Embed

For Roboto with font weights 400, 500, 700 normal and italic the code looks like this:

<link
  href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap"
  rel="stylesheet"
/>

Besides the weight and style of the font, there is one additional property in the link, the display=swap. Font-display currently supports the following range of values auto | block | swap | fallback | optional.

  • auto - uses the browser default
  • block - font face has a short block period and an infinite swap period, meaning text is invisible at first (if font is not loaded) and swapped after. This value should only be used if rendering text in a particular typeface is required for the page to be useable.
  • swap - font face has a zero second block period and an infinite swap period meaning the browser draws text immediately with a fallback if the font face isn’t loaded, but swaps the font face in as soon as it loads.
  • fallback - gives the font face an extremely small block period and a short swap period, meaning the font face is rendered with a fallback at first if it’s not loaded, but the font is swapped as soon as it loads.
  • optional - gives the font face an extremely small block period and a zero second swap period

So display=swap makes sure text is shown immediately using a fallback font, then swapped once the webfont loads. This avoids "Ensure text remains visible during webfont load" warnings.

Ghost Head

Now that we have the embed code, we have to place that in the code. With Ghost CMS this is possible in two ways, we can place it in the default.hbs file of the Ghost Theme or adding it in Ghost Admin, in the Code Injection section.

In the default.hbs, the font link should be added within the <head> </head> section:

<head>
  <!-- Other tags... -->
  <link
    href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap"
    rel="stylesheet"
  />
</head>

This is the standard approach, but you can improve performance further by adding preconnect to speed up the initial connection.

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

After that, include the stylesheet link as usual.

<link rel="preload"> serves as a "hint" to the browser that a given resource is going to be needed soon and it will trigger a request for the Webfont early in the critical rendering path, without having to wait for the CSSOM to be created.

Taking this into account the embed code should look like this:

<head>
  <!-- Other tags... -->
  <link
    rel="preload"
    href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap"
    as="font"
    onload="this.onload=null;this.rel='stylesheet'"
  />

  <noscript>
    <link
      rel="stylesheet"
      href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap"
    />
  </noscript>
</head>

First the tag for preloading is added, as well as the onload event, which means that as soon as this is loaded, it changes the rel to stylesheet.

The noscript tag is a fallback in case Javascript is not available or disabled by the user.

Setup CSS

Now that the font is ready and it is linked, we just have to use it. For this we need to adapt the CSS of the Ghost Theme.

We usually use CSS properties to set Fonts (as well as other things). Global css properties can be defined like this:

:root {
  --font-family-sans: 'Roboto', Arial, sans-serif;
}

With this property defined you can set it for your elements. To set it as the default font for the whole website:

html,
body {
  font-family: var(--font-family-sans);
}

Unless you have some more specific CSS, other elements will inherit this setting, and will use the fonts.

Your Ghost Theme should now have your selected Google Fonts. I hope you find this helpful.

If you're worried about privacy/GDPR and prefer to self-host your fonts, check out our guide about self-hosting Google Fonts in Ghost Themes.