/* The Tasting Press — brand tokens.
 *
 * ONE place to change a brand colour. These values are the ones the print
 * engine uses (engine/editions/<variant>/svglib.py, the C dict), so the web and the
 * printed kit are the same brand rather than two near-misses. If you change a
 * colour here, change it there too — the booklet cannot read this file.
 *
 * Everything else (site.css, order/order.css) consumes these and defines no
 * palette of its own.
 */
:root {
  /* Core */
  --burgundy:      #5E2233;
  --burgundy-deep: #41141F;
  --gold:          #B08A4C;
  --gold-soft:     #CDAF7C;
  --gold-pale:     #E4D3AE;
  --forest:        #31493A;
  --sage:          #A9B79E;
  --wine:          #7B3548;
  --brown:         #7C5C43;

  /* Surfaces and ink */
  --cream:    #F5EFE3;
  --ivory:    #FBF7EE;
  --paper:    #FBF8F2;
  --charcoal: #34302A;
  --ink:      #2B2622;
  --muted:    #7C6F63;
  --line:     rgba(94, 34, 51, .18);

  /* Type. The booklet sets Cormorant Garamond and Jost; the web falls back to
     system faces wherever the webfonts have not loaded. */
  --display: 'Cormorant Garamond', Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --serif:   Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --sans:    'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/CormorantGaramond.ttf') format('truetype');
  font-weight: 300 700; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/Jost.ttf') format('truetype');
  font-weight: 100 900; font-display: swap;
}
