/* There's More — type stack. Loaded after theresmore-palette.css on every page.

   Headings: Redaction 10, served from the Adobe kit as "redaction-10" at 400 and
   700. The locally bundled OTF/WOFF2 (private family "TM Redaction Block", 400
   only) sits behind it as the offline fallback, so a heading set at 700 gets real
   bold from the kit and falls back to regular rather than a fake bold.

   Everything else: Acumin Pro, served from the Adobe kit
   <link rel="stylesheet" href="https://use.typekit.net/iwj5dcn.css">
   which each page also loads directly, per Adobe's instructions. Licensing for
   Acumin still needs to be procured; Archivo stays in the stack behind it so the
   site reads correctly until the kit is live. */

@font-face {
  font-family: "TM Redaction Block";
  src: url("assets/fonts/redaction-10-latin-400-normal.woff2") format("woff2"),
       url("assets/fonts/Redaction10-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  /* Display / headings — Redaction 10 */
  --font-redaction: "redaction-10", "TM Redaction Block", Georgia, "Times New Roman", serif;
  --font-display: var(--font-redaction);

  /* UI, small titles, paragraph text — Acumin Pro */
  --font-acumin: "acumin-pro", "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --font-sans: var(--font-acumin);

  /* The old Newsreader role is retired: body copy is sans now. Anything still
     asking for --font-serif gets Acumin rather than a second serif. */
  --font-serif: var(--font-acumin);
}

h1, h2, h3 {
  font-family: var(--font-redaction);
}
