/*##############################################################################
# Script:        fonts.css           (stylesheet, loaded by frontend/index.html and the login, password and System pages)
# Version:       1.04
# Created by:    Matthew Boucher
# Start date:    2026-09-10
# Location:      <project root>/frontend/css/fonts.css   (main script: <project root>/aiacolyte.py; subscripts: <project root>/subscripts/aiacolyte/)
# Description:   Self-hosted web fonts for the AI Acolyte page (Google Fonts, SIL Open Font
#                License, latin subset), so the site needs no internet connection: Cinzel for
#                headings, Cormorant Garamond for text, Cabin Sketch for the chalkboard and
#                JetBrains Mono for the terminal. Works with the main script, which serves these
#                files as /static/css/fonts.css (nginx serves them on the server); aiacolyte.py
#                --checkup confirms every font file is present.
# Reads:         ../assets/fonts/ (cabin-sketch, cinzel, cormorant-garamond and jetbrains-mono woff2 files)
# Writes:        nothing
# Sensitive:     none needed
# Arguments:     none (a stylesheet cannot take flags); aiacolyte.py --checkup confirms it is in place
# Changelog (last 15):
#   1.04  2026-09-10  Header names the pages that load it (it still said site/index.html).
#   1.03  2026-09-10  Moved to frontend/css/ and served under /static/; header names aiacolyte.py.
#   1.02  2026-09-10  Standard header and footer.
#   1.01  2026-09-10  First version: latin subsets of four families, unused bold chalk font left out.
##############################################################################*/
@font-face {
  font-family: 'Cabin Sketch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/cabin-sketch-normal-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../assets/fonts/cinzel-normal-400-800.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url(../assets/fonts/cormorant-garamond-italic-400-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../assets/fonts/cormorant-garamond-normal-400-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(../assets/fonts/jetbrains-mono-normal-400-600.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*##############################################################################
# End of fonts.css  v1.04
##############################################################################*/
