@charset "utf-8";
/* ==========================================================================
   Seetrol DESK — fa5-fonts.css
   Font Awesome 5 (Pro / Brands) 글꼴 선언만 남긴 파일
   --------------------------------------------------------------------------
   왜 필요한가요?
     템플릿 CSS(style.css / header.css / footer.css / global.css / main.css)에
     content: "\f105" 같은 의사요소 아이콘이 65곳 있습니다. 이 글자들은
     'Font Awesome 5 Pro' · 'Font Awesome 5 Brands' 글꼴이 있어야 보입니다.
     예) style.css 의 .page-title .bread-crumb li:before  (Home > 로그인 구분자)

   예전엔 css/font-awesome.css(103KB)가 이 선언을 갖고 있었는데, 그 파일은
   아이콘 클래스 1,971개까지 함께 들고 있어 CDN 의 Font Awesome 6 와
   중복이었습니다. 그래서 글꼴 선언만 이 파일로 추려냈습니다.
     원본: css/_backup/font-awesome.css

   ※ .fas / .far / .fal / .fab 클래스 규칙은 일부러 옮기지 않았습니다.
      그쪽은 Font Awesome 6 (head.php 가 <link> 로 로드)가 맡습니다.
      여기에 다시 넣으면 FA 6 아이콘이 깨집니다.
   ========================================================================== */

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../fonts/fa-brands-400.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url("../fonts/fa-light-300.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../fonts/fa-regular-400.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../fonts/fa-solid-900.ttf") format("truetype");
}
