/*
 * Vital City web fonts
 *
 * 1. Halyard Text (primary) — loaded via Adobe Typekit. Add this <link> to your <head>:
 *      <link rel="stylesheet" href="https://use.typekit.net/qqk2vto.css">
 *    The Typekit kit on the live site (nlh6iak) is account-scoped; the qqk2vto kit
 *    shipped with the brand skill is the canonical self-serve distribution.
 *
 * 2. GascogneTS Light (secondary serif) — self-hosted TTF in this directory.
 *
 * 3. Atlas Grotesk (chart typography) — Flourish-hosted. Only needed for parity with
 *    Flourish embeds; your own charts should prefer Halyard.
 */

/*
 * GascogneTS: the brand calls for "Extra Light" but the shipped TTF is the
 * Light weight (300). Declaring it at 200 prevents browsers from synth-bolding
 * when we request 200 and keeps the optical feel closer to the brand book's
 * Extra Light. Replace with a true Extra Light TTF when available.
 */
@font-face {
  font-family: "GascogneTS";
  src: url("GascogneTS-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Utility classes mirroring the brand type scheme */
.vc-halyard-black { font-family: var(--vc-font-sans); font-weight: 900; }
.vc-halyard-bold  { font-family: var(--vc-font-sans); font-weight: 700; }
.vc-halyard-book  { font-family: var(--vc-font-sans); font-weight: 300; }
.vc-halyard-light { font-family: var(--vc-font-sans); font-weight: 200; }
.vc-gascogne {
  font-family: var(--vc-font-serif);
  font-weight: 200;
  font-synthesis: none;
  letter-spacing: -0.003em;
}
