/*
 * Self-hosted replacement for the Google Fonts <link> tags previously loaded
 * in the layouts. Same family, weights, and subset (Nunito Sans, weights
 * 400/600/800, latin) — just served from app/assets/fonts instead of
 * Google's CDN, so the app makes no font-related network calls to a third
 * party.
 *
 * Nunito Sans ships from Google Fonts as a single variable-font file for the
 * latin subset; all three weight blocks below point at that same file and
 * let the browser select the right instance via its weight axis, matching
 * how Google's own css2 endpoint serves it.
 */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/nunito-sans-latin-variable-8d1c4fd8.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/nunito-sans-latin-variable-8d1c4fd8.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/nunito-sans-latin-variable-8d1c4fd8.woff2") format("woff2");
}
