/*
 * Typeface families.
 *
 * Only the family variables live here. The @font-face rules are in
 * ../fonts/fonts.css and are installed on the document by theme.js, because a
 * font face declared inside a shadow root is never registered. There is
 * deliberately no @import in this file: a CSS module script cannot have one.
 */
:root {
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  /* Typed-signature faces, offered to the signer. */
  --font-signature: "Dancing Script", "Snell Roundhand", cursive;
  --font-signature-alt: "Caveat", "Bradley Hand", cursive;
}
