/*
  Aptos is a Microsoft system font (ships with Windows 11 / Microsoft 365)
  and isn't available on Google Fonts, so it can't be loaded through
  Material's built-in `theme.font` option (disabled via `font: false` in
  mkdocs.yml). It also can't be bundled here due to its license, so it's
  referenced by name and used wherever it's already installed locally,
  falling back to the system UI font stack everywhere else.
*/
:root {
  --md-text-font: "Aptos", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --md-code-font: "Aptos Mono", "Cascadia Code", Consolas, "SFMono-Regular", Menlo, monospace;
}
