/* Valuate brand fonts — shared @font-face declarations.
   Linked from every entry point (dashboard layout, auth layout, and the
   standalone login/register pages) so the Latin and Arabic type stacks are
   available everywhere, not just on pages that happen to load
   valuate-theme.css. Single source of truth — don't redeclare these
   elsewhere.

   TT Commons (Latin) and 29LT Bukra (Arabic) are the Brandbook 2025
   typefaces. Both are licensed fonts not bundled in this repo — see the
   brand manual's Typography pages. Cairo (bundled below, free) is what
   actually renders for Arabic today; Poppins/Montserrat (loaded via Google
   Fonts where each page needs them) stand in for TT Commons.

   To switch on the real brand fonts once licensed:
   1. Buy the Web License from the foundry (typetype.org for TT Commons,
      29lt.com for 29LT Bukra) and get WOFF2 files for the weights the
      brandbook uses (Light/Regular/Bold, + italics for TT Commons).
   2. Drop the files into public/fonts/, named to match the @font-face
      blocks below (adjust filenames if the foundry names them differently).
   3. Uncomment the two blocks below. Every --font-heading/--font-body/
      --font-arabic variable across the app already lists these family
      names first, so nothing else needs to change. */

@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Cairo'; src: url('../../fonts/Cairo-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }

/* -- Pending licensed files: drop into public/fonts/ and uncomment --

@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'TT Commons'; src: url('../../fonts/TTCommons-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }

@font-face { font-family: '29LT Bukra'; src: url('../../fonts/29LTBukra-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: '29LT Bukra'; src: url('../../fonts/29LTBukra-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: '29LT Bukra'; src: url('../../fonts/29LTBukra-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }

*/
