/* =============================================================
   FASHION FREELANCERS — Fonts
   Using Google Fonts — to self-host for GDPR, download woff2 files
   to /assets/fonts/ and replace the @import below with @font-face rules.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================================
   To self-host (recommended for production):
   1. Download woff2 from https://fonts.google.com
   2. Place in /assets/fonts/
   3. Delete the @import above
   4. Uncomment the @font-face blocks below

@font-face {
	font-family: 'Playfair Display';
	font-style: normal;
	font-weight: 400 600;
	font-display: swap;
	src: url('playfair-display-variable.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'Playfair Display';
	font-style: italic;
	font-weight: 400 600;
	font-display: swap;
	src: url('playfair-display-italic-variable.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('inter-variable.woff2') format('woff2-variations');
}
   ============================================================= */
