/*
  Aeonik hook — Versigent brand display font.

  Aeonik itself is a commercial font (Cotype Foundry) and no licensed file
  is available in this repo. As an interim, this file maps the 'Aeonik'
  font-family to self-hosted "General Sans" (Indian Type Foundry, via
  Fontshare — free for commercial use, OFL-style license), a geometric
  sans with very similar proportions/spirit to Aeonik.

  To switch to real Aeonik later: replace the four .woff2 files in
  ./GeneralSans/ (or point src below) with the licensed Aeonik files —
  no other CSS/view needs to change, since versigent-theme.css and every
  view already reference the family name 'Aeonik' with this file loaded.
*/
@font-face {
  font-family: 'Aeonik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./GeneralSans/GeneralSans-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Aeonik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./GeneralSans/GeneralSans-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Aeonik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./GeneralSans/GeneralSans-Semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Aeonik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./GeneralSans/GeneralSans-Bold.woff2') format('woff2');
}
