diff --git a/fonts/base/00_build_css.py b/fonts/base/00_build_css.py new file mode 100644 index 00000000..f64b86dc --- /dev/null +++ b/fonts/base/00_build_css.py @@ -0,0 +1,68 @@ +import os +import re + +# Directory with the font files +directory = './' + +# Get list of font files +font_files = os.listdir(directory) + +# Initialize an empty list for the typefaces +typefaces = [] + +# Loop over the font files +for file in font_files: + # Strip the file extension + name_weight, extension = os.path.splitext(file) + + # Only process .ttf, .otf, .woff and .woff2 files + if extension.lower() not in ['.ttf', '.otf', '.woff', '.woff2']: + continue + + # Split the name and weight + match = re.match(r'(.*)_(\d+)(I)?', name_weight) + if match: + name, weight, is_italic = match.groups() + else: + name = name_weight + weight = "400" + is_italic = None + + # Check if the typeface is already in the list + for typeface in typefaces: + if typeface['name'] == name: + break + else: + # If the typeface is not in the list, add a new one + typeface = { + "name": name, + "fonts" : [], + "tags" : ["sans-serif"], + } + typefaces.append(typeface) + + # Add file to the typeface + font_descriptor = { + 'weight': weight, + 'style': 'italic' if is_italic else 'normal', + 'file': file, + 'format': 'truetype' if extension == '.ttf' else 'opentype' if extension == '.otf' else 'woff' if extension == '.woff' else 'woff2' + } + typeface['fonts'].append(font_descriptor) + +# Create CSS files +for typeface in typefaces: + css_content = '' + + for font in typeface['fonts']: + css_content += f""" +@font-face {{ + font-family: '{typeface["name"]}'; + src: url('{font["file"]}') format('{font["format"]}'); + font-weight: {font["weight"]}; + font-style: {font["style"]}; +}} +""" + + with open(f'{typeface["name"].lower()}.css', 'w') as f: + f.write(css_content) diff --git a/fonts/base/00_build_object.py b/fonts/base/00_build_object.py new file mode 100644 index 00000000..d5108a11 --- /dev/null +++ b/fonts/base/00_build_object.py @@ -0,0 +1,64 @@ +import os +import re + +# Directory with the font files +directory = './' + +# Get list of font files +font_files = os.listdir(directory) + +# Initialize an empty list for the typefaces +typefaces = [] + +# Loop over the font files +for file in font_files: + # Strip the file extension + name_weight, extension = os.path.splitext(file) + + # Only process .ttf, .otf, .woff and .woff2 files + if extension.lower() not in ['.ttf', '.otf', '.woff', '.woff2']: + continue + + # Split the name and weight + match = re.match(r'(.*)_(\d+)(I)?', name_weight) + if match: + name, weight, is_italic = match.groups() + else: + name = name_weight + weight = "400" + is_italic = None + + # Check if the typeface is already in the list + for typeface in typefaces: + if typeface['name'] == name: + break + else: + # If the typeface is not in the list, add a new one + typeface = { + "name": name, + "fonts" : [], + "tags" : ["sans-serif"], + } + typefaces.append(typeface) + font_descriptor = weight + ('i' if is_italic else '') + typeface['fonts'].append(font_descriptor) + +# Convert the typefaces list to a JavaScript object string +typefaces_js = '[\n' + ',\n'.join( + f' {typeface["name"].lower()} : ' + + '{\n' + + f' "name": "{typeface["name"]}",\n' + + ' "fonts" : [\n' + + ',\n'.join( + f' "{font_descriptor}"' + for font_descriptor in typeface['fonts'] + ) + + '\n ],\n' + + ' "tags" : ["sans-serif"],\n' + + ' }' + for typeface in typefaces +) + '\n]' + +# Write the JavaScript string to a .js file +with open('00_typefaces.js', 'w') as f: + f.write('var typeFaces = ' + typefaces_js + ';') diff --git a/fonts/base/00_typefaces.js b/fonts/base/00_typefaces.js new file mode 100644 index 00000000..28d7a3e8 --- /dev/null +++ b/fonts/base/00_typefaces.js @@ -0,0 +1,680 @@ +var typeFaces = [ + planck : { + "name": "Planck", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + bizon : { + "name": "Bizon", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + inter : { + "name": "Inter", + "fonts" : [ + "600", + "100i", + "700", + "600i", + "700i", + "500", + "400", + "800", + "800i", + "900i", + "200i", + "300i", + "100", + "900", + "200", + "500i", + "400i", + "300" + ], + "tags" : ["sans-serif"], + }, + laborunionsoft : { + "name": "LaborUnionSoft", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + overpass : { + "name": "Overpass", + "fonts" : [ + "400", + "600i", + "600", + "200i", + "800i", + "200", + "400i", + "800" + ], + "tags" : ["sans-serif"], + }, + mersad : { + "name": "Mersad", + "fonts" : [ + "400", + "600", + "200", + "700", + "500", + "100", + "300", + "900", + "800" + ], + "tags" : ["sans-serif"], + }, + leaguegothiccondensed : { + "name": "LeagueGothicCondensed", + "fonts" : [ + "400i", + "400" + ], + "tags" : ["sans-serif"], + }, + disket : { + "name": "Disket", + "fonts" : [ + "400", + "600" + ], + "tags" : ["sans-serif"], + }, + mononoki : { + "name": "Mononoki", + "fonts" : [ + "600i", + "400i", + "600", + "400" + ], + "tags" : ["sans-serif"], + }, + margaret : { + "name": "Margaret", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + gulfsdisplay : { + "name": "GulfsDisplay", + "fonts" : [ + "600i", + "800i", + "400i", + "800", + "200i", + "200", + "500i", + "600", + "400", + "300", + "500", + "300i" + ], + "tags" : ["sans-serif"], + }, + hermit : { + "name": "Hermit", + "fonts" : [ + "600i", + "400i", + "200i", + "200", + "400", + "600" + ], + "tags" : ["sans-serif"], + }, + avenirnext : { + "name": "AvenirNext", + "fonts" : [ + "200", + "300", + "200i", + "300i", + "800i", + "100", + "500i", + "400i", + "800", + "500", + "100i", + "400", + "600", + "700", + "600i", + "700i" + ], + "tags" : ["sans-serif"], + }, + mamenchisa : { + "name": "Mamenchisa", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + avara : { + "name": "Avara", + "fonts" : [ + "400", + "400i" + ], + "tags" : ["sans-serif"], + }, + remboy : { + "name": "Remboy", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + hermanoaltoround : { + "name": "HermanoAltoRound", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + mdtall : { + "name": "MDTall", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + vollkorn : { + "name": "Vollkorn", + "fonts" : [ + "200i", + "800i", + "800", + "400i", + "200", + "600", + "400", + "600i" + ], + "tags" : ["sans-serif"], + }, + quakep : { + "name": "Quakep", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + ribes : { + "name": "Ribes", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + refuse : { + "name": "Refuse", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + blazed : { + "name": "Blazed", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + comictantrum : { + "name": "ComicTantrum", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + doppelganger : { + "name": "Doppelganger", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + communenuitdeboutpochoir : { + "name": "CommuneNuitDeboutPochoir", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + alvania : { + "name": "Alvania", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + lemonmilk : { + "name": "LemonMilk", + "fonts" : [ + "500i", + "400", + "600i", + "600", + "400i", + "200", + "500", + "200i" + ], + "tags" : ["sans-serif"], + }, + feastofflesh : { + "name": "FeastOfFlesh", + "fonts" : [ + "400", + "400i" + ], + "tags" : ["sans-serif"], + }, + axis : { + "name": "Axis", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + ustroke : { + "name": "Ustroke", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + rousseaudeco : { + "name": "RousseauDeco", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + roboto : { + "name": "Roboto", + "fonts" : [ + "200", + "400", + "600", + "800", + "600i", + "800i", + "400i", + "200i" + ], + "tags" : ["sans-serif"], + }, + vercetti : { + "name": "Vercetti", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + marvinvisionsbig : { + "name": "MarvinVisionsBig", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + ambidexter : { + "name": "Ambidexter", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + montreau : { + "name": "Montreau", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + theater : { + "name": "Theater", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + surfingcapital : { + "name": "SurfingCapital", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + boston : { + "name": "Boston", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + cherish : { + "name": "Cherish", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + catreporter : { + "name": "CATReporter", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + wavehaus : { + "name": "Wavehaus", + "fonts" : [ + "800", + "400", + "600", + "200", + "500", + "100" + ], + "tags" : ["sans-serif"], + }, + humane : { + "name": "Humane", + "fonts" : [ + "800", + "400", + "600", + "200", + "500", + "100", + "300" + ], + "tags" : ["sans-serif"], + }, + trappist : { + "name": "Trappist", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + forta : { + "name": "Forta", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + hamlettertia : { + "name": "HamletTertia", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + nim : { + "name": "NIM", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + canobis : { + "name": "Canobis", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + werbedeutsch : { + "name": "Werbedeutsch", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + donjose : { + "name": "DonJose", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + milkcarton : { + "name": "MilkCarton", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + envy code r : { + "name": "Envy Code R", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + mammutcat : { + "name": "MammutCAT", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + rafigen : { + "name": "Rafigen", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + communenuitdebout : { + "name": "CommuneNuitDebout", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + sonderregular : { + "name": "SonderRegular", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + baldur : { + "name": "Baldur", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + banco : { + "name": "Banco", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + overpassmono : { + "name": "OverpassMono", + "fonts" : [ + "400", + "600" + ], + "tags" : ["sans-serif"], + }, + monolith : { + "name": "Monolith", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + arturito : { + "name": "Arturito", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + saintregus : { + "name": "SaintRegus", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + tropikal : { + "name": "Tropikal", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + bondi : { + "name": "Bondi", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + tintin : { + "name": "Tintin", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + laborunion : { + "name": "LaborUnion", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + newake : { + "name": "Newake", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + blankenburg : { + "name": "Blankenburg", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + leaguegothic : { + "name": "LeagueGothic", + "fonts" : [ + "400i", + "400" + ], + "tags" : ["sans-serif"], + }, + volumedealer : { + "name": "VolumeDealer", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + kielo : { + "name": "Kielo", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + harbinger : { + "name": "Harbinger", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + leiko : { + "name": "Leiko", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + theboldfont : { + "name": "TheBoldFont", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + grobedeutschmeister : { + "name": "GrobeDeutschmeister", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + imposible : { + "name": "Imposible", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + hamletcicero : { + "name": "HamletCicero", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + montrappist : { + "name": "MonTrappist", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + resin : { + "name": "Resin", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + misto : { + "name": "Misto", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + }, + archive : { + "name": "Archive", + "fonts" : [ + "400" + ], + "tags" : ["sans-serif"], + } +]; \ No newline at end of file diff --git a/fonts/base/Alvania.ttf b/fonts/base/Alvania.ttf new file mode 100644 index 00000000..0806d18e Binary files /dev/null and b/fonts/base/Alvania.ttf differ diff --git a/fonts/base/Ambidexter.otf b/fonts/base/Ambidexter.otf new file mode 100644 index 00000000..63c24a44 Binary files /dev/null and b/fonts/base/Ambidexter.otf differ diff --git a/fonts/base/Archive.ttf b/fonts/base/Archive.ttf new file mode 100644 index 00000000..1e40bf84 Binary files /dev/null and b/fonts/base/Archive.ttf differ diff --git a/fonts/base/Arturito.ttf b/fonts/base/Arturito.ttf new file mode 100755 index 00000000..04096503 Binary files /dev/null and b/fonts/base/Arturito.ttf differ diff --git a/fonts/base/Avara_400.woff2 b/fonts/base/Avara_400.woff2 new file mode 100644 index 00000000..91c30e0e Binary files /dev/null and b/fonts/base/Avara_400.woff2 differ diff --git a/fonts/base/Avara_400I.woff2 b/fonts/base/Avara_400I.woff2 new file mode 100644 index 00000000..d40cb8f4 Binary files /dev/null and b/fonts/base/Avara_400I.woff2 differ diff --git a/fonts/base/AvenirNext_100.woff2 b/fonts/base/AvenirNext_100.woff2 new file mode 100644 index 00000000..50e2d877 Binary files /dev/null and b/fonts/base/AvenirNext_100.woff2 differ diff --git a/fonts/base/AvenirNext_100I.woff2 b/fonts/base/AvenirNext_100I.woff2 new file mode 100644 index 00000000..be6507d1 Binary files /dev/null and b/fonts/base/AvenirNext_100I.woff2 differ diff --git a/fonts/base/AvenirNext_200.woff2 b/fonts/base/AvenirNext_200.woff2 new file mode 100644 index 00000000..57cbc78f Binary files /dev/null and b/fonts/base/AvenirNext_200.woff2 differ diff --git a/fonts/base/AvenirNext_200I.woff2 b/fonts/base/AvenirNext_200I.woff2 new file mode 100644 index 00000000..868443fb Binary files /dev/null and b/fonts/base/AvenirNext_200I.woff2 differ diff --git a/fonts/base/AvenirNext_300.woff2 b/fonts/base/AvenirNext_300.woff2 new file mode 100644 index 00000000..1a403901 Binary files /dev/null and b/fonts/base/AvenirNext_300.woff2 differ diff --git a/fonts/base/AvenirNext_300I.woff2 b/fonts/base/AvenirNext_300I.woff2 new file mode 100644 index 00000000..8bd9634e Binary files /dev/null and b/fonts/base/AvenirNext_300I.woff2 differ diff --git a/fonts/base/AvenirNext_400.woff2 b/fonts/base/AvenirNext_400.woff2 new file mode 100644 index 00000000..0c50b6a1 Binary files /dev/null and b/fonts/base/AvenirNext_400.woff2 differ diff --git a/fonts/base/AvenirNext_400I.woff2 b/fonts/base/AvenirNext_400I.woff2 new file mode 100644 index 00000000..fe3705ee Binary files /dev/null and b/fonts/base/AvenirNext_400I.woff2 differ diff --git a/fonts/base/AvenirNext_500.woff2 b/fonts/base/AvenirNext_500.woff2 new file mode 100644 index 00000000..32fa03f6 Binary files /dev/null and b/fonts/base/AvenirNext_500.woff2 differ diff --git a/fonts/base/AvenirNext_500I.woff2 b/fonts/base/AvenirNext_500I.woff2 new file mode 100644 index 00000000..b52d5114 Binary files /dev/null and b/fonts/base/AvenirNext_500I.woff2 differ diff --git a/fonts/base/AvenirNext_600.woff2 b/fonts/base/AvenirNext_600.woff2 new file mode 100644 index 00000000..324b7c5f Binary files /dev/null and b/fonts/base/AvenirNext_600.woff2 differ diff --git a/fonts/base/AvenirNext_600I.woff2 b/fonts/base/AvenirNext_600I.woff2 new file mode 100644 index 00000000..80a04c45 Binary files /dev/null and b/fonts/base/AvenirNext_600I.woff2 differ diff --git a/fonts/base/AvenirNext_700.woff2 b/fonts/base/AvenirNext_700.woff2 new file mode 100644 index 00000000..37097149 Binary files /dev/null and b/fonts/base/AvenirNext_700.woff2 differ diff --git a/fonts/base/AvenirNext_700I.woff2 b/fonts/base/AvenirNext_700I.woff2 new file mode 100644 index 00000000..db639d06 Binary files /dev/null and b/fonts/base/AvenirNext_700I.woff2 differ diff --git a/fonts/base/AvenirNext_800.woff2 b/fonts/base/AvenirNext_800.woff2 new file mode 100644 index 00000000..8d4ec848 Binary files /dev/null and b/fonts/base/AvenirNext_800.woff2 differ diff --git a/fonts/base/AvenirNext_800I.woff2 b/fonts/base/AvenirNext_800I.woff2 new file mode 100644 index 00000000..95cc8746 Binary files /dev/null and b/fonts/base/AvenirNext_800I.woff2 differ diff --git a/fonts/base/Axis.otf b/fonts/base/Axis.otf new file mode 100644 index 00000000..9fe37763 Binary files /dev/null and b/fonts/base/Axis.otf differ diff --git a/fonts/base/Baldur.ttf b/fonts/base/Baldur.ttf new file mode 100644 index 00000000..73891ea9 Binary files /dev/null and b/fonts/base/Baldur.ttf differ diff --git a/fonts/base/Banco.ttf b/fonts/base/Banco.ttf new file mode 100644 index 00000000..221cec8a Binary files /dev/null and b/fonts/base/Banco.ttf differ diff --git a/fonts/base/Bizon.otf b/fonts/base/Bizon.otf new file mode 100644 index 00000000..d6f1a88d Binary files /dev/null and b/fonts/base/Bizon.otf differ diff --git a/fonts/base/Blankenburg.ttf b/fonts/base/Blankenburg.ttf new file mode 100644 index 00000000..01bfe89a Binary files /dev/null and b/fonts/base/Blankenburg.ttf differ diff --git a/fonts/base/Blazed.ttf b/fonts/base/Blazed.ttf new file mode 100644 index 00000000..a0527a49 Binary files /dev/null and b/fonts/base/Blazed.ttf differ diff --git a/fonts/base/Bondi.otf b/fonts/base/Bondi.otf new file mode 100644 index 00000000..f51a8b2c Binary files /dev/null and b/fonts/base/Bondi.otf differ diff --git a/fonts/base/Boston.ttf b/fonts/base/Boston.ttf new file mode 100755 index 00000000..9dcddf5c Binary files /dev/null and b/fonts/base/Boston.ttf differ diff --git a/fonts/base/CATReporter.ttf b/fonts/base/CATReporter.ttf new file mode 100644 index 00000000..e999ca06 Binary files /dev/null and b/fonts/base/CATReporter.ttf differ diff --git a/fonts/base/Canobis.otf b/fonts/base/Canobis.otf new file mode 100755 index 00000000..6fa2f444 Binary files /dev/null and b/fonts/base/Canobis.otf differ diff --git a/fonts/base/Cherish.ttf b/fonts/base/Cherish.ttf new file mode 100644 index 00000000..a865e10d Binary files /dev/null and b/fonts/base/Cherish.ttf differ diff --git a/fonts/base/ComicTantrum.otf b/fonts/base/ComicTantrum.otf new file mode 100644 index 00000000..ade36dfa Binary files /dev/null and b/fonts/base/ComicTantrum.otf differ diff --git a/fonts/base/CommuneNuitDebout.woff2 b/fonts/base/CommuneNuitDebout.woff2 new file mode 100644 index 00000000..58bea66e Binary files /dev/null and b/fonts/base/CommuneNuitDebout.woff2 differ diff --git a/fonts/base/CommuneNuitDeboutPochoir.woff2 b/fonts/base/CommuneNuitDeboutPochoir.woff2 new file mode 100644 index 00000000..8af93bea Binary files /dev/null and b/fonts/base/CommuneNuitDeboutPochoir.woff2 differ diff --git a/fonts/base/Disket_400.ttf b/fonts/base/Disket_400.ttf new file mode 100644 index 00000000..b564c60a Binary files /dev/null and b/fonts/base/Disket_400.ttf differ diff --git a/fonts/base/Disket_600.ttf b/fonts/base/Disket_600.ttf new file mode 100644 index 00000000..a33bfccb Binary files /dev/null and b/fonts/base/Disket_600.ttf differ diff --git a/fonts/base/DonJose.otf b/fonts/base/DonJose.otf new file mode 100644 index 00000000..6b62689f Binary files /dev/null and b/fonts/base/DonJose.otf differ diff --git a/fonts/base/Doppelganger.otf b/fonts/base/Doppelganger.otf new file mode 100644 index 00000000..5f77a2df Binary files /dev/null and b/fonts/base/Doppelganger.otf differ diff --git a/fonts/base/EnvyCodeR.ttf b/fonts/base/EnvyCodeR.ttf new file mode 100644 index 00000000..e8e4a604 Binary files /dev/null and b/fonts/base/EnvyCodeR.ttf differ diff --git a/fonts/base/FeastOfFlesh_400.ttf b/fonts/base/FeastOfFlesh_400.ttf new file mode 100644 index 00000000..38348bdf Binary files /dev/null and b/fonts/base/FeastOfFlesh_400.ttf differ diff --git a/fonts/base/FeastOfFlesh_400I.ttf b/fonts/base/FeastOfFlesh_400I.ttf new file mode 100644 index 00000000..f07bd5d7 Binary files /dev/null and b/fonts/base/FeastOfFlesh_400I.ttf differ diff --git a/fonts/base/Forta.woff2 b/fonts/base/Forta.woff2 new file mode 100644 index 00000000..dae83275 Binary files /dev/null and b/fonts/base/Forta.woff2 differ diff --git a/fonts/base/GrobeDeutschmeister.ttf b/fonts/base/GrobeDeutschmeister.ttf new file mode 100644 index 00000000..ed1c73f7 Binary files /dev/null and b/fonts/base/GrobeDeutschmeister.ttf differ diff --git a/fonts/base/GulfsDisplay_200.ttf b/fonts/base/GulfsDisplay_200.ttf new file mode 100644 index 00000000..45e18459 Binary files /dev/null and b/fonts/base/GulfsDisplay_200.ttf differ diff --git a/fonts/base/GulfsDisplay_200I.ttf b/fonts/base/GulfsDisplay_200I.ttf new file mode 100644 index 00000000..8cc80f24 Binary files /dev/null and b/fonts/base/GulfsDisplay_200I.ttf differ diff --git a/fonts/base/GulfsDisplay_300.ttf b/fonts/base/GulfsDisplay_300.ttf new file mode 100644 index 00000000..73739449 Binary files /dev/null and b/fonts/base/GulfsDisplay_300.ttf differ diff --git a/fonts/base/GulfsDisplay_300I.ttf b/fonts/base/GulfsDisplay_300I.ttf new file mode 100644 index 00000000..27d7b242 Binary files /dev/null and b/fonts/base/GulfsDisplay_300I.ttf differ diff --git a/fonts/base/GulfsDisplay_400.ttf b/fonts/base/GulfsDisplay_400.ttf new file mode 100644 index 00000000..2c82e168 Binary files /dev/null and b/fonts/base/GulfsDisplay_400.ttf differ diff --git a/fonts/base/GulfsDisplay_400I.ttf b/fonts/base/GulfsDisplay_400I.ttf new file mode 100644 index 00000000..22004701 Binary files /dev/null and b/fonts/base/GulfsDisplay_400I.ttf differ diff --git a/fonts/base/GulfsDisplay_500.ttf b/fonts/base/GulfsDisplay_500.ttf new file mode 100644 index 00000000..fc180b4b Binary files /dev/null and b/fonts/base/GulfsDisplay_500.ttf differ diff --git a/fonts/base/GulfsDisplay_500I.ttf b/fonts/base/GulfsDisplay_500I.ttf new file mode 100644 index 00000000..144ae0a2 Binary files /dev/null and b/fonts/base/GulfsDisplay_500I.ttf differ diff --git a/fonts/base/GulfsDisplay_600.ttf b/fonts/base/GulfsDisplay_600.ttf new file mode 100644 index 00000000..d8c03483 Binary files /dev/null and b/fonts/base/GulfsDisplay_600.ttf differ diff --git a/fonts/base/GulfsDisplay_600I.ttf b/fonts/base/GulfsDisplay_600I.ttf new file mode 100644 index 00000000..764bcfe8 Binary files /dev/null and b/fonts/base/GulfsDisplay_600I.ttf differ diff --git a/fonts/base/GulfsDisplay_800.ttf b/fonts/base/GulfsDisplay_800.ttf new file mode 100644 index 00000000..3bd72d92 Binary files /dev/null and b/fonts/base/GulfsDisplay_800.ttf differ diff --git a/fonts/base/GulfsDisplay_800I.ttf b/fonts/base/GulfsDisplay_800I.ttf new file mode 100644 index 00000000..79e6e438 Binary files /dev/null and b/fonts/base/GulfsDisplay_800I.ttf differ diff --git a/fonts/base/HamletCicero.otf b/fonts/base/HamletCicero.otf new file mode 100644 index 00000000..0c05e015 Binary files /dev/null and b/fonts/base/HamletCicero.otf differ diff --git a/fonts/base/HamletTertia.otf b/fonts/base/HamletTertia.otf new file mode 100644 index 00000000..0b196333 Binary files /dev/null and b/fonts/base/HamletTertia.otf differ diff --git a/fonts/base/Harbinger.otf b/fonts/base/Harbinger.otf new file mode 100644 index 00000000..6aa7df1d Binary files /dev/null and b/fonts/base/Harbinger.otf differ diff --git a/fonts/base/HermanoAltoRound.ttf b/fonts/base/HermanoAltoRound.ttf new file mode 100644 index 00000000..193ff28d Binary files /dev/null and b/fonts/base/HermanoAltoRound.ttf differ diff --git a/fonts/base/Hermit_200.otf b/fonts/base/Hermit_200.otf new file mode 100644 index 00000000..5b50fb70 Binary files /dev/null and b/fonts/base/Hermit_200.otf differ diff --git a/fonts/base/Hermit_200I.otf b/fonts/base/Hermit_200I.otf new file mode 100644 index 00000000..a8da490d Binary files /dev/null and b/fonts/base/Hermit_200I.otf differ diff --git a/fonts/base/Hermit_400.otf b/fonts/base/Hermit_400.otf new file mode 100644 index 00000000..feb19370 Binary files /dev/null and b/fonts/base/Hermit_400.otf differ diff --git a/fonts/base/Hermit_400I.otf b/fonts/base/Hermit_400I.otf new file mode 100644 index 00000000..6441bb48 Binary files /dev/null and b/fonts/base/Hermit_400I.otf differ diff --git a/fonts/base/Hermit_600.otf b/fonts/base/Hermit_600.otf new file mode 100644 index 00000000..dfca0cce Binary files /dev/null and b/fonts/base/Hermit_600.otf differ diff --git a/fonts/base/Hermit_600I.otf b/fonts/base/Hermit_600I.otf new file mode 100644 index 00000000..512101c4 Binary files /dev/null and b/fonts/base/Hermit_600I.otf differ diff --git a/fonts/base/Humane_100.ttf b/fonts/base/Humane_100.ttf new file mode 100644 index 00000000..34664489 Binary files /dev/null and b/fonts/base/Humane_100.ttf differ diff --git a/fonts/base/Humane_200.ttf b/fonts/base/Humane_200.ttf new file mode 100644 index 00000000..c4ebdabb Binary files /dev/null and b/fonts/base/Humane_200.ttf differ diff --git a/fonts/base/Humane_300.ttf b/fonts/base/Humane_300.ttf new file mode 100644 index 00000000..d322a670 Binary files /dev/null and b/fonts/base/Humane_300.ttf differ diff --git a/fonts/base/Humane_400.ttf b/fonts/base/Humane_400.ttf new file mode 100644 index 00000000..f3e10790 Binary files /dev/null and b/fonts/base/Humane_400.ttf differ diff --git a/fonts/base/Humane_500.ttf b/fonts/base/Humane_500.ttf new file mode 100644 index 00000000..539134f9 Binary files /dev/null and b/fonts/base/Humane_500.ttf differ diff --git a/fonts/base/Humane_600.ttf b/fonts/base/Humane_600.ttf new file mode 100644 index 00000000..e78bfbce Binary files /dev/null and b/fonts/base/Humane_600.ttf differ diff --git a/fonts/base/Humane_800.ttf b/fonts/base/Humane_800.ttf new file mode 100644 index 00000000..44c7ee47 Binary files /dev/null and b/fonts/base/Humane_800.ttf differ diff --git a/fonts/base/Imposible.ttf b/fonts/base/Imposible.ttf new file mode 100644 index 00000000..7cf9c9fc Binary files /dev/null and b/fonts/base/Imposible.ttf differ diff --git a/fonts/base/Inter_100.woff2 b/fonts/base/Inter_100.woff2 new file mode 100644 index 00000000..abbc3a5c Binary files /dev/null and b/fonts/base/Inter_100.woff2 differ diff --git a/fonts/base/Inter_100I.woff2 b/fonts/base/Inter_100I.woff2 new file mode 100644 index 00000000..ab0b2002 Binary files /dev/null and b/fonts/base/Inter_100I.woff2 differ diff --git a/fonts/base/Inter_200.woff2 b/fonts/base/Inter_200.woff2 new file mode 100644 index 00000000..f2ea706f Binary files /dev/null and b/fonts/base/Inter_200.woff2 differ diff --git a/fonts/base/Inter_200I.woff2 b/fonts/base/Inter_200I.woff2 new file mode 100644 index 00000000..9af717ba Binary files /dev/null and b/fonts/base/Inter_200I.woff2 differ diff --git a/fonts/base/Inter_300.woff2 b/fonts/base/Inter_300.woff2 new file mode 100644 index 00000000..bc4be665 Binary files /dev/null and b/fonts/base/Inter_300.woff2 differ diff --git a/fonts/base/Inter_300I.woff2 b/fonts/base/Inter_300I.woff2 new file mode 100644 index 00000000..842b2dfc Binary files /dev/null and b/fonts/base/Inter_300I.woff2 differ diff --git a/fonts/base/Inter_400.woff2 b/fonts/base/Inter_400.woff2 new file mode 100644 index 00000000..6c2b6893 Binary files /dev/null and b/fonts/base/Inter_400.woff2 differ diff --git a/fonts/base/Inter_400I.woff2 b/fonts/base/Inter_400I.woff2 new file mode 100644 index 00000000..a619fc54 Binary files /dev/null and b/fonts/base/Inter_400I.woff2 differ diff --git a/fonts/base/Inter_500.woff2 b/fonts/base/Inter_500.woff2 new file mode 100644 index 00000000..f92498a2 Binary files /dev/null and b/fonts/base/Inter_500.woff2 differ diff --git a/fonts/base/Inter_500I.woff2 b/fonts/base/Inter_500I.woff2 new file mode 100644 index 00000000..0e3019f4 Binary files /dev/null and b/fonts/base/Inter_500I.woff2 differ diff --git a/fonts/base/Inter_600.woff2 b/fonts/base/Inter_600.woff2 new file mode 100644 index 00000000..611e90c9 Binary files /dev/null and b/fonts/base/Inter_600.woff2 differ diff --git a/fonts/base/Inter_600I.woff2 b/fonts/base/Inter_600I.woff2 new file mode 100644 index 00000000..545685bd Binary files /dev/null and b/fonts/base/Inter_600I.woff2 differ diff --git a/fonts/base/Inter_700.woff2 b/fonts/base/Inter_700.woff2 new file mode 100644 index 00000000..2846f29c Binary files /dev/null and b/fonts/base/Inter_700.woff2 differ diff --git a/fonts/base/Inter_700I.woff2 b/fonts/base/Inter_700I.woff2 new file mode 100644 index 00000000..0b1fe8e1 Binary files /dev/null and b/fonts/base/Inter_700I.woff2 differ diff --git a/fonts/base/Inter_800.woff2 b/fonts/base/Inter_800.woff2 new file mode 100644 index 00000000..c24c2bdc Binary files /dev/null and b/fonts/base/Inter_800.woff2 differ diff --git a/fonts/base/Inter_800I.woff2 b/fonts/base/Inter_800I.woff2 new file mode 100644 index 00000000..4a81dc79 Binary files /dev/null and b/fonts/base/Inter_800I.woff2 differ diff --git a/fonts/base/Inter_900.woff2 b/fonts/base/Inter_900.woff2 new file mode 100644 index 00000000..68f64c9e Binary files /dev/null and b/fonts/base/Inter_900.woff2 differ diff --git a/fonts/base/Inter_900I.woff2 b/fonts/base/Inter_900I.woff2 new file mode 100644 index 00000000..1c9c7ca8 Binary files /dev/null and b/fonts/base/Inter_900I.woff2 differ diff --git a/fonts/base/Kielo.otf b/fonts/base/Kielo.otf new file mode 100644 index 00000000..b78be479 Binary files /dev/null and b/fonts/base/Kielo.otf differ diff --git a/fonts/base/LaborUnion.otf b/fonts/base/LaborUnion.otf new file mode 100644 index 00000000..f7de17ba Binary files /dev/null and b/fonts/base/LaborUnion.otf differ diff --git a/fonts/base/LaborUnionSoft.otf b/fonts/base/LaborUnionSoft.otf new file mode 100644 index 00000000..ee787e49 Binary files /dev/null and b/fonts/base/LaborUnionSoft.otf differ diff --git a/fonts/base/LeagueGothicCondensed_400.otf b/fonts/base/LeagueGothicCondensed_400.otf new file mode 100644 index 00000000..b1e70bd0 Binary files /dev/null and b/fonts/base/LeagueGothicCondensed_400.otf differ diff --git a/fonts/base/LeagueGothicCondensed_400I.otf b/fonts/base/LeagueGothicCondensed_400I.otf new file mode 100644 index 00000000..28d71852 Binary files /dev/null and b/fonts/base/LeagueGothicCondensed_400I.otf differ diff --git a/fonts/base/LeagueGothic_400.otf b/fonts/base/LeagueGothic_400.otf new file mode 100644 index 00000000..6cd753fa Binary files /dev/null and b/fonts/base/LeagueGothic_400.otf differ diff --git a/fonts/base/LeagueGothic_400I.otf b/fonts/base/LeagueGothic_400I.otf new file mode 100644 index 00000000..ce19c0a4 Binary files /dev/null and b/fonts/base/LeagueGothic_400I.otf differ diff --git a/fonts/base/Leiko.otf b/fonts/base/Leiko.otf new file mode 100644 index 00000000..b3995305 Binary files /dev/null and b/fonts/base/Leiko.otf differ diff --git a/fonts/base/LemonMilk_200.otf b/fonts/base/LemonMilk_200.otf new file mode 100644 index 00000000..24d3e10d Binary files /dev/null and b/fonts/base/LemonMilk_200.otf differ diff --git a/fonts/base/LemonMilk_200I.otf b/fonts/base/LemonMilk_200I.otf new file mode 100644 index 00000000..0a010270 Binary files /dev/null and b/fonts/base/LemonMilk_200I.otf differ diff --git a/fonts/base/LemonMilk_400.otf b/fonts/base/LemonMilk_400.otf new file mode 100644 index 00000000..b186df8e Binary files /dev/null and b/fonts/base/LemonMilk_400.otf differ diff --git a/fonts/base/LemonMilk_400I.otf b/fonts/base/LemonMilk_400I.otf new file mode 100644 index 00000000..c5d4edf4 Binary files /dev/null and b/fonts/base/LemonMilk_400I.otf differ diff --git a/fonts/base/LemonMilk_500.otf b/fonts/base/LemonMilk_500.otf new file mode 100644 index 00000000..af05cdaf Binary files /dev/null and b/fonts/base/LemonMilk_500.otf differ diff --git a/fonts/base/LemonMilk_500I.otf b/fonts/base/LemonMilk_500I.otf new file mode 100644 index 00000000..39dd6d68 Binary files /dev/null and b/fonts/base/LemonMilk_500I.otf differ diff --git a/fonts/base/LemonMilk_600.otf b/fonts/base/LemonMilk_600.otf new file mode 100644 index 00000000..d0391fc2 Binary files /dev/null and b/fonts/base/LemonMilk_600.otf differ diff --git a/fonts/base/LemonMilk_600I.otf b/fonts/base/LemonMilk_600I.otf new file mode 100644 index 00000000..7b02b729 Binary files /dev/null and b/fonts/base/LemonMilk_600I.otf differ diff --git a/fonts/base/MDTall.ttf b/fonts/base/MDTall.ttf new file mode 100644 index 00000000..0900fd07 Binary files /dev/null and b/fonts/base/MDTall.ttf differ diff --git a/fonts/base/Mamenchisa.otf b/fonts/base/Mamenchisa.otf new file mode 100644 index 00000000..61335270 Binary files /dev/null and b/fonts/base/Mamenchisa.otf differ diff --git a/fonts/base/MammutCAT.ttf b/fonts/base/MammutCAT.ttf new file mode 100644 index 00000000..929c4daf Binary files /dev/null and b/fonts/base/MammutCAT.ttf differ diff --git a/fonts/base/Margaret.otf b/fonts/base/Margaret.otf new file mode 100644 index 00000000..dd05d7cc Binary files /dev/null and b/fonts/base/Margaret.otf differ diff --git a/fonts/base/MarvinVisionsBig.woff2 b/fonts/base/MarvinVisionsBig.woff2 new file mode 100644 index 00000000..618a0dbd Binary files /dev/null and b/fonts/base/MarvinVisionsBig.woff2 differ diff --git a/fonts/base/Mersad_100.ttf b/fonts/base/Mersad_100.ttf new file mode 100644 index 00000000..9b697d55 Binary files /dev/null and b/fonts/base/Mersad_100.ttf differ diff --git a/fonts/base/Mersad_200.ttf b/fonts/base/Mersad_200.ttf new file mode 100644 index 00000000..bb1c8571 Binary files /dev/null and b/fonts/base/Mersad_200.ttf differ diff --git a/fonts/base/Mersad_300.ttf b/fonts/base/Mersad_300.ttf new file mode 100644 index 00000000..01216ecf Binary files /dev/null and b/fonts/base/Mersad_300.ttf differ diff --git a/fonts/base/Mersad_400.ttf b/fonts/base/Mersad_400.ttf new file mode 100644 index 00000000..8fffc72a Binary files /dev/null and b/fonts/base/Mersad_400.ttf differ diff --git a/fonts/base/Mersad_500.ttf b/fonts/base/Mersad_500.ttf new file mode 100644 index 00000000..1692e635 Binary files /dev/null and b/fonts/base/Mersad_500.ttf differ diff --git a/fonts/base/Mersad_600.ttf b/fonts/base/Mersad_600.ttf new file mode 100644 index 00000000..43b9a08a Binary files /dev/null and b/fonts/base/Mersad_600.ttf differ diff --git a/fonts/base/Mersad_700.ttf b/fonts/base/Mersad_700.ttf new file mode 100644 index 00000000..a5fb3d93 Binary files /dev/null and b/fonts/base/Mersad_700.ttf differ diff --git a/fonts/base/Mersad_800.ttf b/fonts/base/Mersad_800.ttf new file mode 100644 index 00000000..296168d3 Binary files /dev/null and b/fonts/base/Mersad_800.ttf differ diff --git a/fonts/base/Mersad_900.ttf b/fonts/base/Mersad_900.ttf new file mode 100644 index 00000000..edddcc60 Binary files /dev/null and b/fonts/base/Mersad_900.ttf differ diff --git a/fonts/base/MilkCarton.otf b/fonts/base/MilkCarton.otf new file mode 100644 index 00000000..da823379 Binary files /dev/null and b/fonts/base/MilkCarton.otf differ diff --git a/fonts/base/Misto.otf b/fonts/base/Misto.otf new file mode 100644 index 00000000..253b26cd Binary files /dev/null and b/fonts/base/Misto.otf differ diff --git a/fonts/base/MonTrappist.otf b/fonts/base/MonTrappist.otf new file mode 100644 index 00000000..8189afd3 Binary files /dev/null and b/fonts/base/MonTrappist.otf differ diff --git a/fonts/base/Monolith.otf b/fonts/base/Monolith.otf new file mode 100644 index 00000000..4daec1b2 Binary files /dev/null and b/fonts/base/Monolith.otf differ diff --git a/fonts/base/Mononoki_400.ttf b/fonts/base/Mononoki_400.ttf new file mode 100644 index 00000000..9510ac85 Binary files /dev/null and b/fonts/base/Mononoki_400.ttf differ diff --git a/fonts/base/Mononoki_400I.ttf b/fonts/base/Mononoki_400I.ttf new file mode 100644 index 00000000..dad4dcc5 Binary files /dev/null and b/fonts/base/Mononoki_400I.ttf differ diff --git a/fonts/base/Mononoki_600.ttf b/fonts/base/Mononoki_600.ttf new file mode 100644 index 00000000..407ed3ed Binary files /dev/null and b/fonts/base/Mononoki_600.ttf differ diff --git a/fonts/base/Mononoki_600I.ttf b/fonts/base/Mononoki_600I.ttf new file mode 100644 index 00000000..784c2d05 Binary files /dev/null and b/fonts/base/Mononoki_600I.ttf differ diff --git a/fonts/base/Montreau.otf b/fonts/base/Montreau.otf new file mode 100755 index 00000000..1fcd87a1 Binary files /dev/null and b/fonts/base/Montreau.otf differ diff --git a/fonts/base/NIM.ttf b/fonts/base/NIM.ttf new file mode 100755 index 00000000..ecfe4ed1 Binary files /dev/null and b/fonts/base/NIM.ttf differ diff --git a/fonts/base/Newake.otf b/fonts/base/Newake.otf new file mode 100644 index 00000000..867ddf4b Binary files /dev/null and b/fonts/base/Newake.otf differ diff --git a/fonts/base/OverpassMono_400.woff2 b/fonts/base/OverpassMono_400.woff2 new file mode 100644 index 00000000..6e1bed63 Binary files /dev/null and b/fonts/base/OverpassMono_400.woff2 differ diff --git a/fonts/base/OverpassMono_600.woff2 b/fonts/base/OverpassMono_600.woff2 new file mode 100644 index 00000000..f1f90e08 Binary files /dev/null and b/fonts/base/OverpassMono_600.woff2 differ diff --git a/fonts/base/Overpass_200.woff2 b/fonts/base/Overpass_200.woff2 new file mode 100644 index 00000000..ee551946 Binary files /dev/null and b/fonts/base/Overpass_200.woff2 differ diff --git a/fonts/base/Overpass_200I.woff2 b/fonts/base/Overpass_200I.woff2 new file mode 100644 index 00000000..142ae0ae Binary files /dev/null and b/fonts/base/Overpass_200I.woff2 differ diff --git a/fonts/base/Overpass_400.woff2 b/fonts/base/Overpass_400.woff2 new file mode 100644 index 00000000..d1310df6 Binary files /dev/null and b/fonts/base/Overpass_400.woff2 differ diff --git a/fonts/base/Overpass_400I.woff2 b/fonts/base/Overpass_400I.woff2 new file mode 100644 index 00000000..d76da758 Binary files /dev/null and b/fonts/base/Overpass_400I.woff2 differ diff --git a/fonts/base/Overpass_600.woff2 b/fonts/base/Overpass_600.woff2 new file mode 100644 index 00000000..ebc48ba2 Binary files /dev/null and b/fonts/base/Overpass_600.woff2 differ diff --git a/fonts/base/Overpass_600I.woff2 b/fonts/base/Overpass_600I.woff2 new file mode 100644 index 00000000..9d413a41 Binary files /dev/null and b/fonts/base/Overpass_600I.woff2 differ diff --git a/fonts/base/Overpass_800.woff2 b/fonts/base/Overpass_800.woff2 new file mode 100644 index 00000000..dbb499f3 Binary files /dev/null and b/fonts/base/Overpass_800.woff2 differ diff --git a/fonts/base/Overpass_800I.woff2 b/fonts/base/Overpass_800I.woff2 new file mode 100644 index 00000000..ed1dfd82 Binary files /dev/null and b/fonts/base/Overpass_800I.woff2 differ diff --git a/fonts/base/Planck.otf b/fonts/base/Planck.otf new file mode 100644 index 00000000..6412c41b Binary files /dev/null and b/fonts/base/Planck.otf differ diff --git a/fonts/base/Quakep.otf b/fonts/base/Quakep.otf new file mode 100644 index 00000000..95141eb7 Binary files /dev/null and b/fonts/base/Quakep.otf differ diff --git a/fonts/base/Rafigen.ttf b/fonts/base/Rafigen.ttf new file mode 100644 index 00000000..dcc9940a Binary files /dev/null and b/fonts/base/Rafigen.ttf differ diff --git a/fonts/base/Refuse.otf b/fonts/base/Refuse.otf new file mode 100644 index 00000000..ccfd5d90 Binary files /dev/null and b/fonts/base/Refuse.otf differ diff --git a/fonts/base/Remboy.ttf b/fonts/base/Remboy.ttf new file mode 100644 index 00000000..298cb430 Binary files /dev/null and b/fonts/base/Remboy.ttf differ diff --git a/fonts/base/Resin.woff b/fonts/base/Resin.woff new file mode 100644 index 00000000..818ff4e1 Binary files /dev/null and b/fonts/base/Resin.woff differ diff --git a/fonts/base/Ribes.otf b/fonts/base/Ribes.otf new file mode 100644 index 00000000..770f1a62 Binary files /dev/null and b/fonts/base/Ribes.otf differ diff --git a/fonts/base/Roboto_200.ttf b/fonts/base/Roboto_200.ttf new file mode 100644 index 00000000..35267989 Binary files /dev/null and b/fonts/base/Roboto_200.ttf differ diff --git a/fonts/base/Roboto_200I.ttf b/fonts/base/Roboto_200I.ttf new file mode 100644 index 00000000..46e9bf7c Binary files /dev/null and b/fonts/base/Roboto_200I.ttf differ diff --git a/fonts/base/Roboto_400.ttf b/fonts/base/Roboto_400.ttf new file mode 100644 index 00000000..2b6392ff Binary files /dev/null and b/fonts/base/Roboto_400.ttf differ diff --git a/fonts/base/Roboto_400I.ttf b/fonts/base/Roboto_400I.ttf new file mode 100644 index 00000000..5b390ff9 Binary files /dev/null and b/fonts/base/Roboto_400I.ttf differ diff --git a/fonts/base/Roboto_600.ttf b/fonts/base/Roboto_600.ttf new file mode 100644 index 00000000..d998cf5b Binary files /dev/null and b/fonts/base/Roboto_600.ttf differ diff --git a/fonts/base/Roboto_600I.ttf b/fonts/base/Roboto_600I.ttf new file mode 100644 index 00000000..b4e22103 Binary files /dev/null and b/fonts/base/Roboto_600I.ttf differ diff --git a/fonts/base/Roboto_800.ttf b/fonts/base/Roboto_800.ttf new file mode 100644 index 00000000..2d452383 Binary files /dev/null and b/fonts/base/Roboto_800.ttf differ diff --git a/fonts/base/Roboto_800I.ttf b/fonts/base/Roboto_800I.ttf new file mode 100644 index 00000000..29a4359e Binary files /dev/null and b/fonts/base/Roboto_800I.ttf differ diff --git a/fonts/base/RousseauDeco.ttf b/fonts/base/RousseauDeco.ttf new file mode 100644 index 00000000..9a1d050a Binary files /dev/null and b/fonts/base/RousseauDeco.ttf differ diff --git a/fonts/base/SaintRegus.otf b/fonts/base/SaintRegus.otf new file mode 100644 index 00000000..b4f3c38b Binary files /dev/null and b/fonts/base/SaintRegus.otf differ diff --git a/fonts/base/SonderRegular.otf b/fonts/base/SonderRegular.otf new file mode 100644 index 00000000..1e6084ed Binary files /dev/null and b/fonts/base/SonderRegular.otf differ diff --git a/fonts/base/SurfingCapital.ttf b/fonts/base/SurfingCapital.ttf new file mode 100644 index 00000000..328547cf Binary files /dev/null and b/fonts/base/SurfingCapital.ttf differ diff --git a/fonts/base/TheBoldFont.ttf b/fonts/base/TheBoldFont.ttf new file mode 100644 index 00000000..2985b05a Binary files /dev/null and b/fonts/base/TheBoldFont.ttf differ diff --git a/fonts/base/Theater.otf b/fonts/base/Theater.otf new file mode 100644 index 00000000..fbfa3114 Binary files /dev/null and b/fonts/base/Theater.otf differ diff --git a/fonts/base/Tintin.ttf b/fonts/base/Tintin.ttf new file mode 100644 index 00000000..270d3f84 Binary files /dev/null and b/fonts/base/Tintin.ttf differ diff --git a/fonts/base/Trappist.otf b/fonts/base/Trappist.otf new file mode 100644 index 00000000..8189afd3 Binary files /dev/null and b/fonts/base/Trappist.otf differ diff --git a/fonts/base/Tropikal.otf b/fonts/base/Tropikal.otf new file mode 100644 index 00000000..68faf94c Binary files /dev/null and b/fonts/base/Tropikal.otf differ diff --git a/fonts/base/Ustroke.ttf b/fonts/base/Ustroke.ttf new file mode 100644 index 00000000..5c4e41f0 Binary files /dev/null and b/fonts/base/Ustroke.ttf differ diff --git a/fonts/base/Vercetti.otf b/fonts/base/Vercetti.otf new file mode 100644 index 00000000..5d3ba3d2 Binary files /dev/null and b/fonts/base/Vercetti.otf differ diff --git a/fonts/base/Vollkorn_200.woff2 b/fonts/base/Vollkorn_200.woff2 new file mode 100644 index 00000000..dbd7cb3a Binary files /dev/null and b/fonts/base/Vollkorn_200.woff2 differ diff --git a/fonts/base/Vollkorn_200I.woff2 b/fonts/base/Vollkorn_200I.woff2 new file mode 100644 index 00000000..86adcfe7 Binary files /dev/null and b/fonts/base/Vollkorn_200I.woff2 differ diff --git a/fonts/base/Vollkorn_400.woff2 b/fonts/base/Vollkorn_400.woff2 new file mode 100644 index 00000000..741d82ff Binary files /dev/null and b/fonts/base/Vollkorn_400.woff2 differ diff --git a/fonts/base/Vollkorn_400I.woff2 b/fonts/base/Vollkorn_400I.woff2 new file mode 100644 index 00000000..4c1d40bb Binary files /dev/null and b/fonts/base/Vollkorn_400I.woff2 differ diff --git a/fonts/base/Vollkorn_600.woff2 b/fonts/base/Vollkorn_600.woff2 new file mode 100644 index 00000000..dd491277 Binary files /dev/null and b/fonts/base/Vollkorn_600.woff2 differ diff --git a/fonts/base/Vollkorn_600I.woff2 b/fonts/base/Vollkorn_600I.woff2 new file mode 100644 index 00000000..3c35c6a6 Binary files /dev/null and b/fonts/base/Vollkorn_600I.woff2 differ diff --git a/fonts/base/Vollkorn_800.woff2 b/fonts/base/Vollkorn_800.woff2 new file mode 100644 index 00000000..45781e99 Binary files /dev/null and b/fonts/base/Vollkorn_800.woff2 differ diff --git a/fonts/base/Vollkorn_800I.woff2 b/fonts/base/Vollkorn_800I.woff2 new file mode 100644 index 00000000..3e2bca41 Binary files /dev/null and b/fonts/base/Vollkorn_800I.woff2 differ diff --git a/fonts/base/VolumeDealer.otf b/fonts/base/VolumeDealer.otf new file mode 100644 index 00000000..39576f9e Binary files /dev/null and b/fonts/base/VolumeDealer.otf differ diff --git a/fonts/base/Wavehaus_100.otf b/fonts/base/Wavehaus_100.otf new file mode 100644 index 00000000..9f04d209 Binary files /dev/null and b/fonts/base/Wavehaus_100.otf differ diff --git a/fonts/base/Wavehaus_200.otf b/fonts/base/Wavehaus_200.otf new file mode 100644 index 00000000..003587d5 Binary files /dev/null and b/fonts/base/Wavehaus_200.otf differ diff --git a/fonts/base/Wavehaus_400.otf b/fonts/base/Wavehaus_400.otf new file mode 100644 index 00000000..2a43acde Binary files /dev/null and b/fonts/base/Wavehaus_400.otf differ diff --git a/fonts/base/Wavehaus_500.otf b/fonts/base/Wavehaus_500.otf new file mode 100644 index 00000000..f19be16e Binary files /dev/null and b/fonts/base/Wavehaus_500.otf differ diff --git a/fonts/base/Wavehaus_600.otf b/fonts/base/Wavehaus_600.otf new file mode 100644 index 00000000..e8daaa25 Binary files /dev/null and b/fonts/base/Wavehaus_600.otf differ diff --git a/fonts/base/Wavehaus_800.otf b/fonts/base/Wavehaus_800.otf new file mode 100644 index 00000000..fb87438d Binary files /dev/null and b/fonts/base/Wavehaus_800.otf differ diff --git a/fonts/base/Werbedeutsch.otf b/fonts/base/Werbedeutsch.otf new file mode 100644 index 00000000..9760dacf Binary files /dev/null and b/fonts/base/Werbedeutsch.otf differ diff --git a/fonts/base/typefaces.js b/fonts/base/typefaces.js new file mode 100644 index 00000000..3bf61c7c --- /dev/null +++ b/fonts/base/typefaces.js @@ -0,0 +1,680 @@ +var typeFaces = [ + planck : { + "name": "Planck", + "fonts" : [ + "Planck.otf" + ], + "tags" : ["sans-serif"], + }, + bizon : { + "name": "Bizon", + "fonts" : [ + "Bizon.otf" + ], + "tags" : ["sans-serif"], + }, + inter : { + "name": "Inter", + "fonts" : [ + "Inter_600.woff2", + "Inter_100I.woff2", + "Inter_700.woff2", + "Inter_600I.woff2", + "Inter_700I.woff2", + "Inter_500.woff2", + "Inter_400.woff2", + "Inter_800.woff2", + "Inter_800I.woff2", + "Inter_900I.woff2", + "Inter_200I.woff2", + "Inter_300I.woff2", + "Inter_100.woff2", + "Inter_900.woff2", + "Inter_200.woff2", + "Inter_500I.woff2", + "Inter_400I.woff2", + "Inter_300.woff2" + ], + "tags" : ["sans-serif"], + }, + laborunionsoft : { + "name": "LaborUnionSoft", + "fonts" : [ + "LaborUnionSoft.otf" + ], + "tags" : ["sans-serif"], + }, + overpass : { + "name": "Overpass", + "fonts" : [ + "Overpass_400.woff2", + "Overpass_600I.woff2", + "Overpass_600.woff2", + "Overpass_200I.woff2", + "Overpass_800I.woff2", + "Overpass_200.woff2", + "Overpass_400I.woff2", + "Overpass_800.woff2" + ], + "tags" : ["sans-serif"], + }, + mersad : { + "name": "Mersad", + "fonts" : [ + "Mersad_400.ttf", + "Mersad_600.ttf", + "Mersad_200.ttf", + "Mersad_700.ttf", + "Mersad_500.ttf", + "Mersad_100.ttf", + "Mersad_300.ttf", + "Mersad_900.ttf", + "Mersad_800.ttf" + ], + "tags" : ["sans-serif"], + }, + leaguegothiccondensed : { + "name": "LeagueGothicCondensed", + "fonts" : [ + "LeagueGothicCondensed_400I.otf", + "LeagueGothicCondensed_400.otf" + ], + "tags" : ["sans-serif"], + }, + disket : { + "name": "Disket", + "fonts" : [ + "Disket_400.ttf", + "Disket_600.ttf" + ], + "tags" : ["sans-serif"], + }, + mononoki : { + "name": "Mononoki", + "fonts" : [ + "Mononoki_600I.ttf", + "Mononoki_400I.ttf", + "Mononoki_600.ttf", + "Mononoki_400.ttf" + ], + "tags" : ["sans-serif"], + }, + margaret : { + "name": "Margaret", + "fonts" : [ + "Margaret.otf" + ], + "tags" : ["sans-serif"], + }, + gulfsdisplay : { + "name": "GulfsDisplay", + "fonts" : [ + "GulfsDisplay_600I.ttf", + "GulfsDisplay_800I.ttf", + "GulfsDisplay_400I.ttf", + "GulfsDisplay_800.ttf", + "GulfsDisplay_200I.ttf", + "GulfsDisplay_200.ttf", + "GulfsDisplay_500I.ttf", + "GulfsDisplay_600.ttf", + "GulfsDisplay_400.ttf", + "GulfsDisplay_300.ttf", + "GulfsDisplay_500.ttf", + "GulfsDisplay_300I.ttf" + ], + "tags" : ["sans-serif"], + }, + hermit : { + "name": "Hermit", + "fonts" : [ + "Hermit_600I.otf", + "Hermit_400I.otf", + "Hermit_200I.otf", + "Hermit_200.otf", + "Hermit_400.otf", + "Hermit_600.otf" + ], + "tags" : ["sans-serif"], + }, + avenirnext : { + "name": "AvenirNext", + "fonts" : [ + "AvenirNext_200.woff2", + "AvenirNext_300.woff2", + "AvenirNext_200I.woff2", + "AvenirNext_300I.woff2", + "AvenirNext_800I.woff2", + "AvenirNext_100.woff2", + "AvenirNext_500I.woff2", + "AvenirNext_400I.woff2", + "AvenirNext_800.woff2", + "AvenirNext_500.woff2", + "AvenirNext_100I.woff2", + "AvenirNext_400.woff2", + "AvenirNext_600.woff2", + "AvenirNext_700.woff2", + "AvenirNext_600I.woff2", + "AvenirNext_700I.woff2" + ], + "tags" : ["sans-serif"], + }, + mamenchisa : { + "name": "Mamenchisa", + "fonts" : [ + "Mamenchisa.otf" + ], + "tags" : ["sans-serif"], + }, + avara : { + "name": "Avara", + "fonts" : [ + "Avara_400.woff2", + "Avara_400I.woff2" + ], + "tags" : ["sans-serif"], + }, + remboy : { + "name": "Remboy", + "fonts" : [ + "Remboy.ttf" + ], + "tags" : ["sans-serif"], + }, + hermanoaltoround : { + "name": "HermanoAltoRound", + "fonts" : [ + "HermanoAltoRound.ttf" + ], + "tags" : ["sans-serif"], + }, + mdtall : { + "name": "MDTall", + "fonts" : [ + "MDTall.ttf" + ], + "tags" : ["sans-serif"], + }, + vollkorn : { + "name": "Vollkorn", + "fonts" : [ + "Vollkorn_200I.woff2", + "Vollkorn_800I.woff2", + "Vollkorn_800.woff2", + "Vollkorn_400I.woff2", + "Vollkorn_200.woff2", + "Vollkorn_600.woff2", + "Vollkorn_400.woff2", + "Vollkorn_600I.woff2" + ], + "tags" : ["sans-serif"], + }, + quakep : { + "name": "Quakep", + "fonts" : [ + "Quakep.otf" + ], + "tags" : ["sans-serif"], + }, + ribes : { + "name": "Ribes", + "fonts" : [ + "Ribes.otf" + ], + "tags" : ["sans-serif"], + }, + refuse : { + "name": "Refuse", + "fonts" : [ + "Refuse.otf" + ], + "tags" : ["sans-serif"], + }, + blazed : { + "name": "Blazed", + "fonts" : [ + "Blazed.ttf" + ], + "tags" : ["sans-serif"], + }, + comictantrum : { + "name": "ComicTantrum", + "fonts" : [ + "ComicTantrum.otf" + ], + "tags" : ["sans-serif"], + }, + doppelganger : { + "name": "Doppelganger", + "fonts" : [ + "Doppelganger.otf" + ], + "tags" : ["sans-serif"], + }, + communenuitdeboutpochoir : { + "name": "CommuneNuitDeboutPochoir", + "fonts" : [ + "CommuneNuitDeboutPochoir.woff2" + ], + "tags" : ["sans-serif"], + }, + alvania : { + "name": "Alvania", + "fonts" : [ + "Alvania.ttf" + ], + "tags" : ["sans-serif"], + }, + lemonmilk : { + "name": "LemonMilk", + "fonts" : [ + "LemonMilk_500I.otf", + "LemonMilk_400.otf", + "LemonMilk_600I.otf", + "LemonMilk_600.otf", + "LemonMilk_400I.otf", + "LemonMilk_200.otf", + "LemonMilk_500.otf", + "LemonMilk_200I.otf" + ], + "tags" : ["sans-serif"], + }, + feastofflesh : { + "name": "FeastOfFlesh", + "fonts" : [ + "FeastOfFlesh_400.ttf", + "FeastOfFlesh_400I.ttf" + ], + "tags" : ["sans-serif"], + }, + axis : { + "name": "Axis", + "fonts" : [ + "Axis.otf" + ], + "tags" : ["sans-serif"], + }, + ustroke : { + "name": "Ustroke", + "fonts" : [ + "Ustroke.ttf" + ], + "tags" : ["sans-serif"], + }, + rousseaudeco : { + "name": "RousseauDeco", + "fonts" : [ + "RousseauDeco.ttf" + ], + "tags" : ["sans-serif"], + }, + roboto : { + "name": "Roboto", + "fonts" : [ + "Roboto_200.ttf", + "Roboto_400.ttf", + "Roboto_600.ttf", + "Roboto_800.ttf", + "Roboto_600I.ttf", + "Roboto_800I.ttf", + "Roboto_400I.ttf", + "Roboto_200I.ttf" + ], + "tags" : ["sans-serif"], + }, + vercetti : { + "name": "Vercetti", + "fonts" : [ + "Vercetti.otf" + ], + "tags" : ["sans-serif"], + }, + marvinvisionsbig : { + "name": "MarvinVisionsBig", + "fonts" : [ + "MarvinVisionsBig.woff2" + ], + "tags" : ["sans-serif"], + }, + ambidexter : { + "name": "Ambidexter", + "fonts" : [ + "Ambidexter.otf" + ], + "tags" : ["sans-serif"], + }, + montreau : { + "name": "Montreau", + "fonts" : [ + "Montreau.otf" + ], + "tags" : ["sans-serif"], + }, + theater : { + "name": "Theater", + "fonts" : [ + "Theater.otf" + ], + "tags" : ["sans-serif"], + }, + surfingcapital : { + "name": "SurfingCapital", + "fonts" : [ + "SurfingCapital.ttf" + ], + "tags" : ["sans-serif"], + }, + boston : { + "name": "Boston", + "fonts" : [ + "Boston.ttf" + ], + "tags" : ["sans-serif"], + }, + cherish : { + "name": "Cherish", + "fonts" : [ + "Cherish.ttf" + ], + "tags" : ["sans-serif"], + }, + catreporter : { + "name": "CATReporter", + "fonts" : [ + "CATReporter.ttf" + ], + "tags" : ["sans-serif"], + }, + wavehaus : { + "name": "Wavehaus", + "fonts" : [ + "Wavehaus_800.otf", + "Wavehaus_400.otf", + "Wavehaus_600.otf", + "Wavehaus_200.otf", + "Wavehaus_500.otf", + "Wavehaus_100.otf" + ], + "tags" : ["sans-serif"], + }, + humane : { + "name": "Humane", + "fonts" : [ + "Humane_800.ttf", + "Humane_400.ttf", + "Humane_600.ttf", + "Humane_200.ttf", + "Humane_500.ttf", + "Humane_100.ttf", + "Humane_300.ttf" + ], + "tags" : ["sans-serif"], + }, + trappist : { + "name": "Trappist", + "fonts" : [ + "Trappist.otf" + ], + "tags" : ["sans-serif"], + }, + forta : { + "name": "Forta", + "fonts" : [ + "Forta.woff2" + ], + "tags" : ["sans-serif"], + }, + hamlettertia : { + "name": "HamletTertia", + "fonts" : [ + "HamletTertia.otf" + ], + "tags" : ["sans-serif"], + }, + nim : { + "name": "NIM", + "fonts" : [ + "NIM.ttf" + ], + "tags" : ["sans-serif"], + }, + canobis : { + "name": "Canobis", + "fonts" : [ + "Canobis.otf" + ], + "tags" : ["sans-serif"], + }, + werbedeutsch : { + "name": "Werbedeutsch", + "fonts" : [ + "Werbedeutsch.otf" + ], + "tags" : ["sans-serif"], + }, + donjose : { + "name": "DonJose", + "fonts" : [ + "DonJose.otf" + ], + "tags" : ["sans-serif"], + }, + milkcarton : { + "name": "MilkCarton", + "fonts" : [ + "MilkCarton.otf" + ], + "tags" : ["sans-serif"], + }, + envy code r : { + "name": "Envy Code R", + "fonts" : [ + "Envy Code R.ttf" + ], + "tags" : ["sans-serif"], + }, + mammutcat : { + "name": "MammutCAT", + "fonts" : [ + "MammutCAT.ttf" + ], + "tags" : ["sans-serif"], + }, + rafigen : { + "name": "Rafigen", + "fonts" : [ + "Rafigen.ttf" + ], + "tags" : ["sans-serif"], + }, + communenuitdebout : { + "name": "CommuneNuitDebout", + "fonts" : [ + "CommuneNuitDebout.woff2" + ], + "tags" : ["sans-serif"], + }, + sonderregular : { + "name": "SonderRegular", + "fonts" : [ + "SonderRegular.otf" + ], + "tags" : ["sans-serif"], + }, + baldur : { + "name": "Baldur", + "fonts" : [ + "Baldur.ttf" + ], + "tags" : ["sans-serif"], + }, + banco : { + "name": "Banco", + "fonts" : [ + "Banco.ttf" + ], + "tags" : ["sans-serif"], + }, + overpassmono : { + "name": "OverpassMono", + "fonts" : [ + "OverpassMono_400.woff2", + "OverpassMono_600.woff2" + ], + "tags" : ["sans-serif"], + }, + monolith : { + "name": "Monolith", + "fonts" : [ + "Monolith.otf" + ], + "tags" : ["sans-serif"], + }, + arturito : { + "name": "Arturito", + "fonts" : [ + "Arturito.ttf" + ], + "tags" : ["sans-serif"], + }, + saintregus : { + "name": "SaintRegus", + "fonts" : [ + "SaintRegus.otf" + ], + "tags" : ["sans-serif"], + }, + tropikal : { + "name": "Tropikal", + "fonts" : [ + "Tropikal.otf" + ], + "tags" : ["sans-serif"], + }, + bondi : { + "name": "Bondi", + "fonts" : [ + "Bondi.otf" + ], + "tags" : ["sans-serif"], + }, + tintin : { + "name": "Tintin", + "fonts" : [ + "Tintin.ttf" + ], + "tags" : ["sans-serif"], + }, + laborunion : { + "name": "LaborUnion", + "fonts" : [ + "LaborUnion.otf" + ], + "tags" : ["sans-serif"], + }, + newake : { + "name": "Newake", + "fonts" : [ + "Newake.otf" + ], + "tags" : ["sans-serif"], + }, + blankenburg : { + "name": "Blankenburg", + "fonts" : [ + "Blankenburg.ttf" + ], + "tags" : ["sans-serif"], + }, + leaguegothic : { + "name": "LeagueGothic", + "fonts" : [ + "LeagueGothic_400I.otf", + "LeagueGothic_400.otf" + ], + "tags" : ["sans-serif"], + }, + volumedealer : { + "name": "VolumeDealer", + "fonts" : [ + "VolumeDealer.otf" + ], + "tags" : ["sans-serif"], + }, + kielo : { + "name": "Kielo", + "fonts" : [ + "Kielo.otf" + ], + "tags" : ["sans-serif"], + }, + harbinger : { + "name": "Harbinger", + "fonts" : [ + "Harbinger.otf" + ], + "tags" : ["sans-serif"], + }, + leiko : { + "name": "Leiko", + "fonts" : [ + "Leiko.otf" + ], + "tags" : ["sans-serif"], + }, + theboldfont : { + "name": "TheBoldFont", + "fonts" : [ + "TheBoldFont.ttf" + ], + "tags" : ["sans-serif"], + }, + grobedeutschmeister : { + "name": "GrobeDeutschmeister", + "fonts" : [ + "GrobeDeutschmeister.ttf" + ], + "tags" : ["sans-serif"], + }, + imposible : { + "name": "Imposible", + "fonts" : [ + "Imposible.ttf" + ], + "tags" : ["sans-serif"], + }, + hamletcicero : { + "name": "HamletCicero", + "fonts" : [ + "HamletCicero.otf" + ], + "tags" : ["sans-serif"], + }, + montrappist : { + "name": "MonTrappist", + "fonts" : [ + "MonTrappist.otf" + ], + "tags" : ["sans-serif"], + }, + resin : { + "name": "Resin", + "fonts" : [ + "Resin.woff" + ], + "tags" : ["sans-serif"], + }, + misto : { + "name": "Misto", + "fonts" : [ + "Misto.otf" + ], + "tags" : ["sans-serif"], + }, + archive : { + "name": "Archive", + "fonts" : [ + "Archive.ttf" + ], + "tags" : ["sans-serif"], + } +]; \ No newline at end of file diff --git a/fonts/serv/Inter/Inter-Black.woff b/fonts/serv/Inter/Inter-Black.woff deleted file mode 100644 index a18593a0..00000000 Binary files a/fonts/serv/Inter/Inter-Black.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-BlackItalic.woff b/fonts/serv/Inter/Inter-BlackItalic.woff deleted file mode 100644 index b6b01943..00000000 Binary files a/fonts/serv/Inter/Inter-BlackItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Bold.woff b/fonts/serv/Inter/Inter-Bold.woff deleted file mode 100644 index eaf3d4bf..00000000 Binary files a/fonts/serv/Inter/Inter-Bold.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-BoldItalic.woff b/fonts/serv/Inter/Inter-BoldItalic.woff deleted file mode 100644 index 32750761..00000000 Binary files a/fonts/serv/Inter/Inter-BoldItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-ExtraBold.woff b/fonts/serv/Inter/Inter-ExtraBold.woff deleted file mode 100644 index c2c17ede..00000000 Binary files a/fonts/serv/Inter/Inter-ExtraBold.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-ExtraBoldItalic.woff b/fonts/serv/Inter/Inter-ExtraBoldItalic.woff deleted file mode 100644 index c42f7052..00000000 Binary files a/fonts/serv/Inter/Inter-ExtraBoldItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-ExtraLight.woff b/fonts/serv/Inter/Inter-ExtraLight.woff deleted file mode 100644 index d0de5f39..00000000 Binary files a/fonts/serv/Inter/Inter-ExtraLight.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-ExtraLightItalic.woff b/fonts/serv/Inter/Inter-ExtraLightItalic.woff deleted file mode 100644 index 81f1a28e..00000000 Binary files a/fonts/serv/Inter/Inter-ExtraLightItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Italic.woff b/fonts/serv/Inter/Inter-Italic.woff deleted file mode 100644 index a806b382..00000000 Binary files a/fonts/serv/Inter/Inter-Italic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Light.woff b/fonts/serv/Inter/Inter-Light.woff deleted file mode 100644 index c496464d..00000000 Binary files a/fonts/serv/Inter/Inter-Light.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-LightItalic.woff b/fonts/serv/Inter/Inter-LightItalic.woff deleted file mode 100644 index f84a9de3..00000000 Binary files a/fonts/serv/Inter/Inter-LightItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Medium.woff b/fonts/serv/Inter/Inter-Medium.woff deleted file mode 100644 index d546843f..00000000 Binary files a/fonts/serv/Inter/Inter-Medium.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-MediumItalic.woff b/fonts/serv/Inter/Inter-MediumItalic.woff deleted file mode 100644 index 459a6568..00000000 Binary files a/fonts/serv/Inter/Inter-MediumItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Regular.woff b/fonts/serv/Inter/Inter-Regular.woff deleted file mode 100644 index 62d3a618..00000000 Binary files a/fonts/serv/Inter/Inter-Regular.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-SemiBold.woff b/fonts/serv/Inter/Inter-SemiBold.woff deleted file mode 100644 index a815f43a..00000000 Binary files a/fonts/serv/Inter/Inter-SemiBold.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-SemiBoldItalic.woff b/fonts/serv/Inter/Inter-SemiBoldItalic.woff deleted file mode 100644 index 909e43a9..00000000 Binary files a/fonts/serv/Inter/Inter-SemiBoldItalic.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-Thin.woff b/fonts/serv/Inter/Inter-Thin.woff deleted file mode 100644 index 62bc58cd..00000000 Binary files a/fonts/serv/Inter/Inter-Thin.woff and /dev/null differ diff --git a/fonts/serv/Inter/Inter-ThinItalic.woff b/fonts/serv/Inter/Inter-ThinItalic.woff deleted file mode 100644 index 700a7f06..00000000 Binary files a/fonts/serv/Inter/Inter-ThinItalic.woff and /dev/null differ