/*
 * Self-hosted POND brand fonts. These were previously fetched from
 * cdn.fontshare.com, which added a render-blocking cross-origin connection
 * (DNS + TLS) before text could paint. The exact same Fontshare woff2 files now
 * live under /static/pond/fonts and are served same-origin with our
 * Cache-Control. woff2 covers ~98% of browsers; older browsers fall back to the
 * system stack via font-display: swap.
 */
@font-face {
  font-family: "General Sans";
  src: url("/static/pond/fonts/general-sans-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/static/pond/fonts/general-sans-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/static/pond/fonts/general-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/static/pond/fonts/general-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/static/pond/fonts/cabinet-grotesk-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/static/pond/fonts/cabinet-grotesk-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/static/pond/fonts/cabinet-grotesk-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
