/* Using Poppins as a free alternative to Gotham */
/* The font is already loaded from Google Fonts in app.blade.php */

/* Define Gotham as an alias to Poppins for easy switching later */
.font-gotham {
  font-family: 'Poppins', sans-serif;
}

/* Custom utility classes for Gotham-like typography */
.gotham-light {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.gotham-book {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.gotham-medium {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.gotham-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.gotham-black {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}
