/* Copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>

 This file is part of a Moko Consulting project.

 SPDX-License-Identifier: GPL-3.0-or-later
 */

/*
 * IMPORTANT: Font files must be downloaded separately
 * 
 * This CSS file references Fira Sans font files that must be manually downloaded
 * and placed in the fonts directory. See GOOGLE_FONTS_README.md in the fonts
 * directory for download instructions.
 * 
 * Required files:
 * - fira-sans-v17-latin-100.woff2
 * - fira-sans-v17-latin-300.woff2
 * - fira-sans-v17-latin-regular.woff2
 * - fira-sans-v17-latin-700.woff2
 */

/* Fira Sans Thin (100) */
@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 100;
	font-display: swap;
	src: url('../../fonts/fira-sans-v17-latin-100.woff2') format('woff2');
}

/* Fira Sans Light (300) */
@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('../../fonts/fira-sans-v17-latin-300.woff2') format('woff2');
}

/* Fira Sans Regular (400) */
@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../../fonts/fira-sans-v17-latin-regular.woff2') format('woff2');
}

/* Fira Sans Bold (700) */
@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../../fonts/fira-sans-v17-latin-700.woff2') format('woff2');
}
