/* Material Symbols — police d'icônes.

   Deux points qui ne sont pas des détails :

   · font-display: BLOCK, et non swap. Un <glyph> contient le NOM de son icône
     (« sports_esports »), que la ligature remplace par le dessin. En swap, ce nom s'affiche
     en toutes lettres tant que la police n'est pas arrivée : la page montre des mots à la
     place des icônes, et la mise en page saute quand ils disparaissent. En block, rien ne
     s'affiche pendant le court délai d'attente, puis l'icône apparaît.

   · format('truetype'), et non 'woff2'. Les fichiers SONT des TrueType ; annoncer un format
     que le fichier n'a pas autorise n'importe quel moteur à rejeter la police sans l'essayer.
*/

@font-face {
	font-family: 'GSymbol-outlined';
	font-style: normal;
	font-weight: 100 700;
	font-display: block;
	src: url(/assets/fonts/symbol-outlined.ttf) format('truetype');
}

@font-face {
	font-family: 'GSymbol-rounded';
	font-style: normal;
	font-weight: 100 700;
	font-display: block;
	src: url(/assets/fonts/symbol-rounded.ttf) format('truetype');
}

@font-face {
	font-family: 'GSymbol-sharp';
	font-style: normal;
	font-weight: 100 700;
	font-display: block;
	src: url(/assets/fonts/symbol-sharp.ttf) format('truetype');
}


glyph {
	font-family: 'GSymbol-rounded';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "liga";
	font-variation-settings:
	'FILL' 1,
	'wght' 100,
	'GRAD' -25,
	'opsz' 48
}

glyph.empty {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' -25,
  'opsz' 48
}

glyph[empty] {
	font-variation-settings:
	'FILL' 0,
	'wght' 100,
	'GRAD' -25,
	'opsz' 48
}

glyph[vbold] {
	font-variation-settings:
	'FILL' 1,
	'wght' 400,
	'GRAD' 25,
	'opsz' 48
}


glyph[var1] {
	font-variation-settings:
	'FILL' 1,
	'wght' 700,
	'GRAD' -25,
	'opsz' 24
}

glyph[plain] {
	font-variation-settings:
	'FILL' 1,
	'wght' 300,
	'GRAD' 0,
	'opsz' 0
}

glyph[thin] {
	font-variation-settings:
	'FILL' 0,
	'wght' 100,
	'GRAD' 5,
	'opsz' 5
}

glyph.round {
  	font-family: 'GSymbol-rounded';
}
glyph.sharp {
  	font-family: 'GSymbol-sharp';
}
glyph.outline {
  	font-family: 'GSymbol-outlined';
}