/**
 * fonts.css
 * 
 * Importação de fontes do projeto
 * Sistema de Análise The Tower
 * 
 * @author Dudu Lima
 * @version 1.0.0
 * @since 2025-10-16
 */

/* =============================================
   GOOGLE FONTS - Sofia Sans Condensed
   ============================================= */

/* Import Sofia Sans Condensed with multiple weights */
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');

/* =============================================
   CONFIGURAÇÃO BASE
   ============================================= */

/* Aplicar fonte globalmente via CSS */
* {
  font-family: 'Sofia Sans Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Classes auxiliares para diferentes pesos */
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

