diff --git a/fonts/base/00_build_css.py b/fonts/base/00_build_css.py new file mode 100644 index 0000000..f64b86d --- /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 0000000..d5108a1 --- /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 0000000..28d7a3e --- /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 0000000..0806d18 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 0000000..63c24a4 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 0000000..1e40bf8 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 0000000..0409650 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 0000000..91c30e0 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 0000000..d40cb8f 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 0000000..50e2d87 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 0000000..be6507d 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 0000000..57cbc78 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 0000000..868443f 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 0000000..1a40390 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 0000000..8bd9634 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 0000000..0c50b6a 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 0000000..fe3705e 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 0000000..32fa03f 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 0000000..b52d511 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 0000000..324b7c5 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 0000000..80a04c4 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 0000000..3709714 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 0000000..db639d0 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 0000000..8d4ec84 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 0000000..95cc874 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 0000000..9fe3776 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 0000000..73891ea 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 0000000..221cec8 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 0000000..d6f1a88 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 0000000..01bfe89 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 0000000..a0527a4 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 0000000..f51a8b2 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 0000000..9dcddf5 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 0000000..e999ca0 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 0000000..6fa2f44 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 0000000..a865e10 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 0000000..ade36df 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 0000000..58bea66 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 0000000..8af93be 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 0000000..b564c60 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 0000000..a33bfcc 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 0000000..6b62689 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 0000000..5f77a2d 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 0000000..e8e4a60 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 0000000..38348bd 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 0000000..f07bd5d 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 0000000..dae8327 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 0000000..ed1c73f 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 0000000..45e1845 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 0000000..8cc80f2 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 0000000..7373944 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 0000000..27d7b24 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 0000000..2c82e16 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 0000000..2200470 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 0000000..fc180b4 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 0000000..144ae0a 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 0000000..d8c0348 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 0000000..764bcfe 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 0000000..3bd72d9 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 0000000..79e6e43 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 0000000..0c05e01 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 0000000..0b19633 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 0000000..6aa7df1 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 0000000..193ff28 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 0000000..5b50fb7 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 0000000..a8da490 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 0000000..feb1937 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 0000000..6441bb4 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 0000000..dfca0cc 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 0000000..512101c 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 0000000..3466448 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 0000000..c4ebdab 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 0000000..d322a67 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 0000000..f3e1079 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 0000000..539134f 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 0000000..e78bfbc 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 0000000..44c7ee4 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 0000000..7cf9c9f 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 0000000..abbc3a5 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 0000000..ab0b200 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 0000000..f2ea706 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 0000000..9af717b 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 0000000..bc4be66 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 0000000..842b2df 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 0000000..6c2b689 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 0000000..a619fc5 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 0000000..f92498a 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 0000000..0e3019f 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 0000000..611e90c 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 0000000..545685b 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 0000000..2846f29 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 0000000..0b1fe8e 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 0000000..c24c2bd 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 0000000..4a81dc7 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 0000000..68f64c9 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 0000000..1c9c7ca 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 0000000..b78be47 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 0000000..f7de17b 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 0000000..ee787e4 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 0000000..b1e70bd 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 0000000..28d7185 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 0000000..6cd753f 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 0000000..ce19c0a 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 0000000..b399530 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 0000000..24d3e10 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 0000000..0a01027 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 0000000..b186df8 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 0000000..c5d4edf 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 0000000..af05cda 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 0000000..39dd6d6 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 0000000..d0391fc 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 0000000..7b02b72 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 0000000..0900fd0 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 0000000..6133527 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 0000000..929c4da 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 0000000..dd05d7c 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 0000000..618a0db 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 0000000..9b697d5 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 0000000..bb1c857 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 0000000..01216ec 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 0000000..8fffc72 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 0000000..1692e63 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 0000000..43b9a08 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 0000000..a5fb3d9 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 0000000..296168d 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 0000000..edddcc6 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 0000000..da82337 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 0000000..253b26c 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 0000000..8189afd 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 0000000..4daec1b 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 0000000..9510ac8 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 0000000..dad4dcc 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 0000000..407ed3e 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 0000000..784c2d0 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 0000000..1fcd87a 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 0000000..ecfe4ed 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 0000000..867ddf4 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 0000000..6e1bed6 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 0000000..f1f90e0 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 0000000..ee55194 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 0000000..142ae0a 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 0000000..d1310df 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 0000000..d76da75 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 0000000..ebc48ba 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 0000000..9d413a4 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 0000000..dbb499f 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 0000000..ed1dfd8 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 0000000..6412c41 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 0000000..95141eb 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 0000000..dcc9940 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 0000000..ccfd5d9 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 0000000..298cb43 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 0000000..818ff4e 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 0000000..770f1a6 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 0000000..3526798 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 0000000..46e9bf7 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 0000000..2b6392f 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 0000000..5b390ff 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 0000000..d998cf5 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 0000000..b4e2210 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 0000000..2d45238 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 0000000..29a4359 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 0000000..9a1d050 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 0000000..b4f3c38 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 0000000..1e6084e 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 0000000..328547c 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 0000000..2985b05 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 0000000..fbfa311 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 0000000..270d3f8 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 0000000..8189afd 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 0000000..68faf94 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 0000000..5c4e41f 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 0000000..5d3ba3d 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 0000000..dbd7cb3 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 0000000..86adcfe 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 0000000..741d82f 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 0000000..4c1d40b 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 0000000..dd49127 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 0000000..3c35c6a 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 0000000..45781e9 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 0000000..3e2bca4 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 0000000..39576f9 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 0000000..9f04d20 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 0000000..003587d 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 0000000..2a43acd 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 0000000..f19be16 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 0000000..e8daaa2 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 0000000..fb87438 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 0000000..9760dac 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 0000000..3bf61c7 --- /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 a18593a..0000000 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 b6b0194..0000000 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 eaf3d4b..0000000 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 3275076..0000000 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 c2c17ed..0000000 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 c42f705..0000000 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 d0de5f3..0000000 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 81f1a28..0000000 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 a806b38..0000000 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 c496464..0000000 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 f84a9de..0000000 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 d546843..0000000 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 459a656..0000000 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 62d3a61..0000000 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 a815f43..0000000 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 909e43a..0000000 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 62bc58c..0000000 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 700a7f0..0000000 Binary files a/fonts/serv/Inter/Inter-ThinItalic.woff and /dev/null differ