/* Font matching the old Ghost "digest" theme: Raleway for everything.
   On the live Ghost site --gh-font-heading is unset, so both body text and
   headings (h1-h6) resolve to --font-sans, i.e. Raleway. Headings here inherit
   the body font, so a single body rule covers them.
   Self-hosted (woff2/woff) so there's no external CDN dependency.
   This file overrides the theme's own static/css/fonts.css. */

@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/raleway-v27-latin-regular.woff2") format("woff2"),
       url("/fonts/raleway-v27-latin-regular.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/raleway-v27-latin-700.woff2") format("woff2"),
       url("/fonts/raleway-v27-latin-700.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/raleway-v27-latin-italic.woff2") format("woff2"),
       url("/fonts/raleway-v27-latin-italic.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/raleway-v27-latin-700italic.woff2") format("woff2"),
       url("/fonts/raleway-v27-latin-700italic.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/raleway-v27-latin-800.woff2") format("woff2"),
       url("/fonts/raleway-v27-latin-800.woff") format("woff");
}

body {
  font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

/* Keep a monospace font for code (matches the theme's original rule). */
code {
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 85%;
}
