/* Font Embedding for ECS Offline Deployment
 *
 * ECS Fargate containers have NO internet access.
 * Use this placeholder file to embed Google Fonts as Base64.
 *
 * Instructions:
 *   1. Download font files from fonts.google.com (download the .ttf)
 *   2. Convert to woff2:  npx ttf2woff2 < font.ttf > font.woff2
#   3. Encode to Base64:  [Convert]::ToBase64String([IO.File]::ReadAllBytes("font.woff2"))
#   4. Paste into the @font-face below
 *
# Then in index.html add:
#   <link rel="stylesheet" href="assets/fonts/fonts-embedded.css">
#   (BEFORE style.css)
 *
# Recommended fonts for handwriting visualization:
#   - Caveat         (blackboard titles) — https://fonts.google.com/specimen/Caveat
#   - Kalam          (blackboard body)   — https://fonts.google.com/specimen/Kalam
#   - Architects Daughter (whiteboard)   — https://fonts.google.com/specimen/Architects+Daughter
#   - Patrick Hand   (whiteboard body)   — https://fonts.google.com/specimen/Patrick+Hand

/*
@font-face {
  font-family: 'Caveat';
  src: url('data:font/woff2;base64,REPLACE_WITH_BASE64_HERE') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kalam';
  src: url('data:font/woff2;base64,REPLACE_WITH_BASE64_HERE') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Architects Daughter';
  src: url('data:font/woff2;base64,REPLACE_WITH_BASE64_HERE') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
*/
