/* Jonathan Eliasi — brand tokens (book p.14) + fonts (book p.14). Local review only. */

@font-face {
  font-family: 'Vodan';
  src: url('../fonts/brand/vodan_ttf-webfont.woff2') format('woff2'),
       url('../fonts/brand/vodan_ttf-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Assistant';
  src: url('../fonts/brand/Assistant-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette — verified, book p.14 */
  --je-ink: #2D2D2D;
  --je-slate: #5B5B5B;
  --je-gray: #898A8A;
  --je-silver: #B8B8B8;
  --je-paper: #DDDDDD;
  --je-white: #FFFFFF;

  --je-display: 'Vodan', 'Didot', 'Bodoni MT', serif;   /* Latin display only */
  --je-text: 'Assistant', 'Helvetica Neue', Arial, sans-serif;

  --je-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
