/* Fonts, resolved locally.
 *
 * The design pulled Inter and three Noto scripts from Google Fonts. This app
 * handles client PII and must run with no outbound network at all, so the
 * families are mapped onto fonts macOS already ships instead. Same family
 * names, same stack order — templates and app.css are unchanged.
 *
 * The Indic and Nastaliq faces matter: a Gurmukhi or Nastaliq string rendered
 * in a fallback that lacks the script is unreadable, and the certification
 * screen exists to be read closely.
 */

@font-face {
  font-family: 'Inter';
  src: local('Inter'), local('SF Pro Text'), local('Helvetica Neue');
  font-weight: 400 700;
}

@font-face {
  font-family: 'Noto Sans Gurmukhi';
  src: local('Noto Sans Gurmukhi'), local('Gurmukhi MN'), local('Gurmukhi Sangam MN');
  font-weight: 400 600;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: local('Noto Sans Devanagari'), local('Devanagari Sangam MN'), local('Kohinoor Devanagari');
  font-weight: 400 600;
}

@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: local('Noto Nastaliq Urdu'), local('Nastaliq'), local('Geeza Pro');
  font-weight: 400 600;
}
