/*
 * Gotham web fonts for docs.copley.com — the licensed brand typeface, the same
 * files the app self-hosts (client/public/fonts). Published here so any docs
 * page can render in Gotham rather than a fallback. Kept out of tokens.css on
 * purpose: tokens.css is the portable, Tailwind-facing contract and must not
 * carry font-file URLs.
 *
 * Faces limited to what the pages use — Book (body), Book Italic (emphasis),
 * Medium (headings, per the brand guide). Add Bold if a page needs weight 700.
 */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("/brand/fonts/Gotham-Book.otf") format("opentype");
}

@font-face {
  font-family: Gotham;
  font-style: italic;
  font-weight: normal;
  font-display: swap;
  src: url("/brand/fonts/Gotham-BookItalic.otf") format("opentype");
}

@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/brand/fonts/Gotham-Medium.otf") format("opentype");
}
