/* ============================================
   GOTHAM FONT FAMILY DEFINITIONS
   This file loads all Gotham font variants
   used in the Super Admin application
   All fonts are OpenType (.otf) format
   ============================================ */

/* Gotham Book (325 weight) - Used for forgot password link and error messages */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Book.otf') format('opentype');
    font-weight: 325;
    font-style: normal;
    font-display: swap;
  }
  
  /* Gotham Medium (500 weight) - Used for field labels and button text */
  @font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500; /* Medium weight */
    font-style: normal;
    font-display: swap;
  }
  
  /* Gotham Medium also mapped to 400 for placeholder text */
  @font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Gotham Bold (700 weight) - Available if needed */
  @font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Gotham Rounded Bold (700 weight) - Used for header title */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/gotham/GothamRnd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }