diff --git a/.fontfoldercleanup/font_folder_cleanup.py b/.fontfoldercleanup/font_folder_cleanup.py index 1dc34b5..018b9a5 100644 --- a/.fontfoldercleanup/font_folder_cleanup.py +++ b/.fontfoldercleanup/font_folder_cleanup.py @@ -3,6 +3,8 @@ import time from fileinput import filename repo_location = '/Users/fishy/custom_fonts' +os.system(f"cd ") + font_location = f'{repo_location}/font_files' bad_phrases = [' Free', @@ -135,7 +137,7 @@ def collect_orphaned_fonts(path=font_location): def lowercase_all_the_folders(root_path=font_location): """ - Lowercases all the folders in the root path, except those starting with a period. + Lowercases all the folders recursively in the root_path. Args: root_path (str): The path to the directory to be checked and cleaned. @@ -143,15 +145,14 @@ def lowercase_all_the_folders(root_path=font_location): Returns: None """ - for dir in os.listdir(root_path): - dir_path = os.path.join(root_path, dir) - if os.path.isdir(dir_path): - if dir.startswith('.'): - continue - new_dir_path = os.path.join(root_path, dir.lower()) + for root, dirs, files in os.walk(root_path): + for dir in dirs: + dir_path = os.path.join(root, dir) + new_dir_path = os.path.join(root, dir.lower()) os.rename(dir_path, new_dir_path) print(f"Renamed directory: {dir_path} -> {new_dir_path}") + def add_font_folders_to_each(root_path=font_location): for dir in os.listdir(root_path): dir_path = os.path.join(root_path, dir) @@ -221,13 +222,16 @@ def remove_setup_complete_files(root_path=font_location): print(f"Removed .setup_complete file: {file_path}") def remove_spaces_in_dir_names(root_path=font_location): - for dir in os.listdir(root_path): - dir_path = os.path.join(root_path, dir) - if os.path.isdir(dir_path): - #If directory name contains spaces, replace them with dashes + for root, dirs, files in os.walk(root_path, topdown=False): + for dir in dirs: + dir_path = os.path.join(root, dir) if ' ' in dir: new_dir = dir.replace(' ', '-') - new_dir_path = os.path.join(root_path, new_dir) + #lowercase the new directory name + while new_dir.endswith('-'): + new_dir = new_dir[:-1] + new_dir = new_dir.lower() + new_dir_path = os.path.join(root, new_dir) os.rename(dir_path, new_dir_path) print(f"Renamed directory: {dir_path} -> {new_dir_path}") @@ -243,25 +247,65 @@ def prepend_folder_name_to_font_dash(root_path=font_location): os.rename(dir_path, new_dir_path) print(f"Renamed directory: {dir_path} -> {new_dir_path}") + + def lowercase_and_dash_file_names(root_path=font_location): for root, dirs, files in os.walk(root_path): for file in files: file_path = os.path.join(root, file) new_file_path = os.path.join(root, file.lower()) - #let's also remove spaces in the file names + # Remove spaces in the file names new_file_path = new_file_path.replace(' ', '-') - os.rename(file_path, new_file_path) - print(f"Renamed file: {file_path} -> {new_file_path}") + # Check if the file exists before renaming + if os.path.exists(file_path): + os.rename(file_path, new_file_path) + print(f"Renamed file: {file_path} -> {new_file_path}") + else: + print(f"File not found: {file_path}") + + +def dont_use_dots_for_font_files(root_path=font_location): + for root, dirs, files in os.walk(root_path): + for file in files: + file_path = os.path.join(root, file) + extensions = ['.otf', '.ttf', '.ttc', '.pdf', '.woff', '.woff2'] + if any(file_path.endswith(ext) for ext in extensions): + new_file_path = None + for x in ['.','_', ' ', '-', '.-','--']: + if file.startswith(x): + new_file_path = os.path.join(root, file.lstrip(x)) + if not os.path.exists(new_file_path): + os.rename(file_path, new_file_path) + print(f"Renamed file: {file_path} -> {new_file_path}") + else: + print(f"Skipped renaming {file_path} as {new_file_path} already exists") + new_file_path = None + +def remove_double_and_triple_dashes(root_path=font_location): + ## remove double and triple dashes from file names + ## should loop until no more double or triple dashes are found + for root, dirs, files in os.walk(root_path): + for file in files: + file_path = os.path.join(root, file) + #replace -- or --- with - + if '--' in file or '---' in file: + new_file = file.replace('--','-') + new_file = new_file.replace('---','-') + new_file_path = os.path.join(root, new_file) + os.rename(file_path, new_file_path) + print(f"Renamed file: {file_path} -> {new_file_path}") if __name__ == '__main__': remove_ds_store_files() remove_empty_folders() - remove_bad_phrases() collect_orphaned_fonts() + remove_bad_phrases() lowercase_all_the_folders() - # add_font_folders_to_each() remove_spaces_in_dir_names() lowercase_and_dash_file_names() prepend_folder_name_to_font_dash() + dont_use_dots_for_font_files() + remove_double_and_triple_dashes() + remove_double_and_triple_dashes() remove_ds_store_files() remove_empty_folders() diff --git a/.fontfoldercleanup/git_reset_and_clean.sh b/.fontfoldercleanup/git_reset_and_clean.sh deleted file mode 100755 index 7898bde..0000000 --- a/.fontfoldercleanup/git_reset_and_clean.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/zsh -# go to the root of the repository -cd "$(git rev-parse --show-toplevel)" -# reset the repository to the main branch and clean it -git reset --hard main -git clean -fdx -e .env/ -e .idea/ \ No newline at end of file diff --git a/.fontfoldercleanup/iterate.py b/.fontfoldercleanup/iterate.py new file mode 100644 index 0000000..d395164 --- /dev/null +++ b/.fontfoldercleanup/iterate.py @@ -0,0 +1,51 @@ +import os +import subprocess +import sys + +def main(): + mydir = os.path.dirname(__file__) + + # Define the absolute path to the prep script + prep_script = os.path.join(mydir, 'prep 1 font.sh') + + # Activate python environment + env_activate = os.path.join(mydir, '.env/bin/activate') + subprocess.run(['source', env_activate], shell=True, check=True) + + # Move orphans before we do anything else + orphans_script = os.path.join(mydir, 'orphans.py') + subprocess.run(['python3', orphans_script], check=True) + + # Check if the prep script exists + if not os.path.isfile(prep_script): + print(f"Prep script not found: {prep_script}") + sys.exit(1) + + # Ensure the prep script is executable + os.chmod(prep_script, 0o755) + + # Check if the prep script is executable + if not os.access(prep_script, os.X_OK): + print(f"Prep script not executable: {prep_script}") + sys.exit(1) + + # Define the absolute path to the font_files directory + font_files_dir = os.path.join(mydir, 'font_files') + + # Check if the font_files directory exists + if not os.path.isdir(font_files_dir): + print(f"font_files directory not found: {font_files_dir}") + sys.exit(1) + + # Iterate over each folder in font_files + for folder in os.listdir(font_files_dir): + folder_path = os.path.join(font_files_dir, folder) + if os.path.isdir(folder_path): + os.chdir(folder_path) + subprocess.run(['zsh', prep_script], check=True) + os.chdir('..') + else: + print(f"No such directory: {folder}") + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/iterate.sh b/.fontfoldercleanup/iterate.sh similarity index 100% rename from iterate.sh rename to .fontfoldercleanup/iterate.sh diff --git a/orphans.py b/.fontfoldercleanup/orphans.py similarity index 100% rename from orphans.py rename to .fontfoldercleanup/orphans.py diff --git a/prep 1 font.sh b/.fontfoldercleanup/prep 1 font.sh similarity index 84% rename from prep 1 font.sh rename to .fontfoldercleanup/prep 1 font.sh index 180ac28..f57f2a0 100755 --- a/prep 1 font.sh +++ b/.fontfoldercleanup/prep 1 font.sh @@ -21,8 +21,8 @@ fi #recursively find all .zip files and unzip them find . -name '*.zip' -exec unzip {} \; -# Make OTF and TTF folders if they don't exist -mkdir -p OTF TTF "other files" +# Make otf and ttf folders if they don't exist +mkdir -p otf ttf "other files" # Recurse through all folders and subfolders and move files that are not .ttf or .otf into the "other files" folder find . -type f -exec mv {} "other files" \; @@ -35,12 +35,12 @@ find . -name '*.ofm' -type f -delete find . -name '*.cfg' -type f -delete find . -name '*.zip' -type f -delete -# Recurse through all folders and subfolders and move all .ttf files into the TTF folder -find . -name '*.ttf' -type f -exec mv {} TTF \; -# Recurse through all folders and subfolders and move all .ttc files into the TTF folder -find . -name '*.ttc' -type f -exec mv {} TTF \; -# Recurse through all folders and subfolders and move all .otf files into the OTF folder -find . -name '*.otf' -type f -exec mv {} OTF \; +# Recurse through all folders and subfolders and move all .ttf files into the ttf folder +find . -name '*.ttf' -type f -exec mv {} ttf \; +# Recurse through all folders and subfolders and move all .ttc files into the ttf folder +find . -name '*.ttc' -type f -exec mv {} ttf \; +# Recurse through all folders and subfolders and move all .otf files into the otf folder +find . -name '*.otf' -type f -exec mv {} otf \; # Recurse through all folders and subfolders and delete all empty folders find . -type d -empty -delete diff --git a/.fontfoldercleanup/remove_ds_and_clean_empty_folders.py b/.fontfoldercleanup/remove_ds_and_clean_empty_folders.py index c3eb3d9..b0863f7 100644 --- a/.fontfoldercleanup/remove_ds_and_clean_empty_folders.py +++ b/.fontfoldercleanup/remove_ds_and_clean_empty_folders.py @@ -1,9 +1,17 @@ import font_folder_cleanup import os +def git_cleanup(): + os.system("cd $(git rev-parse --show-toplevel) && git stash push -- .fontfoldercleanup/ && git reset --hard && git clean -fdx -e .env/ -e .idea/ -e .fontfoldercleanup/") + +def apply_stash(): + os.system("cd $(git rev-parse --show-toplevel) && git stash apply") + if __name__ == '__main__': # Clean up git repository - os.system("./git_reset_and_clean.sh") # Change to repo location, reset the repository, and clean untracked files except those in .gitignore - cleanup.remove_ds_store_files() # Remove .DS_Store files from the repository - cleanup.remove_setup_complete_files() # Remove setup complete files from the repository - cleanup.remove_empty_folders() # Remove empty folders from the repository \ No newline at end of file + git_cleanup() # Clean up git repository + font_folder_cleanup.remove_ds_store_files() # Remove .DS_Store files from the repository + font_folder_cleanup.remove_setup_complete_files() # Remove setup complete files from the repository + font_folder_cleanup.remove_empty_folders() # Remove empty folders from the repository + git_cleanup() # Clean up git repository again after removing files and folders + apply_stash() # Apply the stash to restore the files that were removed \ No newline at end of file diff --git a/create repos for fonts.py b/.fontfoldercleanup/repo_tasks.py similarity index 100% rename from create repos for fonts.py rename to .fontfoldercleanup/repo_tasks.py diff --git a/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.otf b/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.otf new file mode 100644 index 0000000..0462653 Binary files /dev/null and b/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.otf differ diff --git a/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.ttf b/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.ttf new file mode 100644 index 0000000..6d11520 Binary files /dev/null and b/font_files/AbbieScriptPro-Rg/AbbieScriptPro-Rg.ttf differ diff --git a/font_files/AbbieScriptPro-Rg/EULA.txt b/font_files/AbbieScriptPro-Rg/EULA.txt new file mode 100644 index 0000000..869b498 --- /dev/null +++ b/font_files/AbbieScriptPro-Rg/EULA.txt @@ -0,0 +1,100 @@ +------------------------------------------------- +Tom Chalky Font EULA (End User License Agreement) +------------------------------------------------- + +I understand that reading EULAs (End User License Agreements) can be a chore but I have tried my best to make my terms very clear and reasonable to keep both parties happy. Of course if there are any questions left unanswered you can contact me using the information in section E and I will try and clarify anything for you. +Also, if you have any suggestions regarding my EULA please again use the information in section E to get in touch. My main priority is to satisfy you to the best of my ability and to make my agreement as ‘real world’ friendly as possible. + +By installing any font software created by or under the name of Tom Chalky, you are indicating that you agree that the font software remains the exclusive property of Tom Chalky and that you have the correct licensing in place to protect the use of the font software under the following terms and conditions. + +------------------- +A - Number of CPU's +------------------- + +A1 - You can install the font(s) on one (1) portable device such as a notebook or laptop computer and on one (1) device that remains at a single location such as a desktop computer. These devices can be connected to any number of physical outputs. The physical output can be an inkjet printer, laser printer, offset press, silk screener, vinyl cutter, die-maker etc. + +A2 - If you want to license my fonts for more than what is stated in A1 (one (1) user, one (1) stationary CPU and one (1) transportable CPU), you must upgrade your license to a multiple-user license. A multiple-user license includes the exact same terms as a standard license, but with a higher number of devices and users allowed. To find out how to attain a multiple-user license, refer to section F1. + +---------------------------------------------- +B - Standard Permissions and Special Licensing +---------------------------------------------- + +B1 - Use with any software: You can use my fonts with any software that supports them. This includes mainstream software such as Microsoft, Adobe, Macromedia or any other software retailer's programs, or software you or your company may have had custom-made. + +B3 - Prepress Allowance: You can send my fonts to your printing services, but after the job has been completed please ensure that they remove the fonts from their systems as they will probably end up using them on other jobs, which reduce the value of the fonts we created and you paid for. + +B4 - Embedding Permissions: You can embed my fonts in certain electronic documents. This includes PDF, Flash and Microsoft Office documents (such as Word or PowerPoint), or multimedia files, but if at all possible, please make sure that you do not embed the complete character set. Fonts embedded in electronic documents can usually be extracted and pirated, I obviously would rather that didn’t happen. + +B5 - ePub Licensing: The embedding and use of my fonts in commercial electronic publications such as eBooks require a special kind of licensing. For more information regarding ePub Licensing divert your attention to section F2. + +B6 – Web Font Licensing: You can use my fonts for simple web-related tasks, like making raster images or navigation elements to display on your web page. If you want to use my fonts as “webfonts”, whereby you include them in your site's CSS code so that they appear live in web site documents, you must obtain a web font license. To obtain a web font license, please refer to section F3. + +B7 – Web App Licensing: If you want to make my fonts available as part of a dynamic interface for a server-based program (such as a Flash or PHP/Javascript program), or include them in a web browser-based program, you must obtain a special web application license. This license can be obtained by contacting us, see section F4 for more information regarding the web app license. + +B8 – Printing our Fonts: You can use my fonts to print artwork on clothes, cars, mugs, fridge magnets or any other products that you, your company, or your clients are selling. + +B9 – Non-Digital 3D Shapes/Products: You can use my fonts to make non-digital 3-dimensional shapes, rubber stamps or scrapbooking alphabets that you can sell. + +B10 – Corporate Identity and Branding: You can use my fonts to produce artwork meant to be part of a corporate identity or branding. This includes letterheads, business cards, business forms, banners, film titling, tie-in products, etc. However Logos are excluded from the list. If you intend on using the font for a logo design, please get in touch via our email stated in section E. + +B11 – Backups: You can keep one backup copy of any my font you have licensed, but the backup medium you use should be secure and only privately accessible. + +B12 – Modification: You can modify my fonts, but only for uses outlined within the condition of this license and as long as the modifications are being done by yourself. Modification also means font format conversion. If you have a Mac and a PC, you can use conversion software to convert the font between platforms. Third parties to this license are not allowed to modify my fonts under any circumstance, unless formally authorized in writing by Tom Chalky. + +B13 – Internal Usage: You can install my fonts to be served internally to users at your company, provided that you have purchased the appropriate license for the amount of users who will have access to the font/s. Please also review the Multi-User License section and the pricing structure in section F1. All users must be covered with the license. + +B14 – Distribution: You cannot give away copies of my fonts in ways that do not comply with the rest of this agreement. For example: you cannot make any my fonts available for download on the internet, email them to your friends, upload them to public internet file transfer or storing channels. Please respect the value of what we do, so that we keep having an incentive to continue. + +B15 – Reselling: You cannot resell my fonts through any medium unless you have written authorisation from Tom Chalky to be a distributor. This also means you cannot modify my fonts then sell the resulting modification. + +B16 – Usage not mentioned? If you are wondering about a particular type of usage we didn't include in this agreement, just drop us a line and we will try our hardest to help. See section E for a way get in touch. + +---------------------- +C) Support and Updates +---------------------- + +C1 – Quality Check: All of my fonts undergo thorough testing before they are available for licensing, but if I did something wrong and the font you licensed doesn't perform properly or up to your expectations, I will replace it with a satisfactory copy. Please make sure you include the order number or have the purchase receipt available when you ask for an exchange. + +C2 – Free Lifetime Support: All my fonts come with free lifetime support. However I cannot offer support for fonts that have been modified in any way as I am not familiar with how they were modified and cannot be held responsible for the aftermarket editing process. + +C3 – Updates: All of my fonts come with free lifetime version updates. This is made easier if you register an account with me when you purchase your font licenses as your purchase history is stored on your account and is re-downloadable at any time. All available downloads are updated at the source, and updates will be applied to the downloads available on your account. I promise to keep providing free version upgrades for as long as my fonts exists. + +----------------------- +D) Miscellaneous Notes: +----------------------- + +D1 - If you don't agree with some of my license terms, please discuss the issue with myself. I am always open to new ways of providing you with better service. I am a small independent design studio that thrives only by keeping my customers happy so that they come back for more. I believe that fonts with unreasonable restrictions do not ultimately contribute to anyone's satisfaction, so I try my best to keep my licensing adaptable to as many workflows as possible. + +D2 - My fonts are made to be used how fonts are normally used. I can guarantee and support their functionality as fonts, but not as anything else. I cannot take responsibility for incidental damages arising from my fonts being used in any application or in a certain way. Also I cannot take responsibility for a user's level of experience in using fonts within certain workflows. + +----------------------- +E – Contact Information +----------------------- + +Email – Tomchalkys@gmail.com + +------------------------------ +F – Special Licensing Pricing: +------------------------------ + +F1 – Multi-User License: To obtain a Multi-User License with any of my fonts, simply purchase the same quantity of fonts as you need users by altering the quantity section on my checkout page. +For example, If 10 users are going to be using our Bobby Jones Font ($30 with a single user license) you will need to buy Bobby Jones to the Quantity of 10 totalling to $300. + +F2 - ePub Licensing Table: + +Below is the ePub License pricing model, please note that multi-user licensing still applies to the number of users, regardless of the number of publications being licensed. To obtain this license, you must contact me directly. Refer to section E. + +# of ePubs Price x Base Price: +1 (x 10) +2-5 (x 20) +6-20 (x 35) +21-50 (x 50) +Unlimited (x 200) + +F3 – Webfont Licensing: + +A Webfont license can be purchased directly through the store, simply navigate to your selected font and select ‘Webfont’ in the drop down box, the price will be the same as the Desktop license but will not cover any Desktop usage. If you require both licenses, please purchase both by following the same method and select Desktop + Webfont. Available formats (EOT, WOFF, WOFF2). + +F4 – Web App Licensing + +Licensing my fonts for web application integration is priced per application, with an option to license for unlimited applications. The price per application is 50x base price. The unlimited application option is 200x base price. Contact me directly to obtain this license. Refer to section E. diff --git a/font_files/AbbieScriptPro-Rg/Hidden Freebies + Thank-you.txt b/font_files/AbbieScriptPro-Rg/Hidden Freebies + Thank-you.txt new file mode 100644 index 0000000..adfc6b4 --- /dev/null +++ b/font_files/AbbieScriptPro-Rg/Hidden Freebies + Thank-you.txt @@ -0,0 +1,10 @@ +If I could personally thank every person that downloaded one of my fonts I really would, but unfortunately that's just not possible. However, I do try my best to show my appreciation with newsletter exclusive free fonts and limited time coupons only for those that subscribe and follow me on this creative entrepreneurial journey. + +So, would you do me the honor of subscribing to my newsletter (http://eepurl.com/beQLFL), it's completely free and within a few days you'll receive some great free downloads that I think you will love! + +Have a great week! +Tom Chalky + +----------- +Any questions or fancy a chat, get in touch: tomchalkys@gmail.com +----------- \ No newline at end of file diff --git a/font_files/AveraSansTc/AveraSansTc.otf b/font_files/AveraSansTc/AveraSansTc.otf new file mode 100644 index 0000000..daa22e4 Binary files /dev/null and b/font_files/AveraSansTc/AveraSansTc.otf differ diff --git a/font_files/AveraSansTc/AveraSansTcBld.otf b/font_files/AveraSansTc/AveraSansTcBld.otf new file mode 100644 index 0000000..0c431a3 Binary files /dev/null and b/font_files/AveraSansTc/AveraSansTcBld.otf differ diff --git a/font_files/AveraSansTc/AveraSansTcBrsh.otf b/font_files/AveraSansTc/AveraSansTcBrsh.otf new file mode 100644 index 0000000..2de5fa7 Binary files /dev/null and b/font_files/AveraSansTc/AveraSansTcBrsh.otf differ diff --git a/font_files/AveraSansTc/AveraSansTcLt.otf b/font_files/AveraSansTc/AveraSansTcLt.otf new file mode 100644 index 0000000..3bcc8b9 Binary files /dev/null and b/font_files/AveraSansTc/AveraSansTcLt.otf differ diff --git a/font_files/AveraSansTc/AveraSansTcSktch.otf b/font_files/AveraSansTc/AveraSansTcSktch.otf new file mode 100644 index 0000000..6b095ee Binary files /dev/null and b/font_files/AveraSansTc/AveraSansTcSktch.otf differ diff --git a/font_files/Acrylic Hand SVG/other files/TomChalky_Desktop_Licensing.pdf b/font_files/AveraSansTc/TomChalky_Desktop_Licensing.pdf old mode 100755 new mode 100644 similarity index 100% rename from font_files/Acrylic Hand SVG/other files/TomChalky_Desktop_Licensing.pdf rename to font_files/AveraSansTc/TomChalky_Desktop_Licensing.pdf diff --git a/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft Outline.otf b/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft Outline.otf new file mode 100644 index 0000000..033843e Binary files /dev/null and b/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft Outline.otf differ diff --git a/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft.otf b/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft.otf new file mode 100644 index 0000000..5e8205b Binary files /dev/null and b/font_files/Bobby-Jones-Soft-Free/Bobby Jones Soft.otf differ diff --git a/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft Outline.ttf b/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft Outline.ttf new file mode 100644 index 0000000..2bd8ba0 Binary files /dev/null and b/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft Outline.ttf differ diff --git a/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft.ttf b/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft.ttf new file mode 100644 index 0000000..6e27fa8 Binary files /dev/null and b/font_files/Bobby-Jones-Soft-Free/Bobby Rough Soft.ttf differ diff --git a/font_files/Bobby-Jones-Soft-Free/TomChalky_Desktop_Licensing.pdf b/font_files/Bobby-Jones-Soft-Free/TomChalky_Desktop_Licensing.pdf new file mode 100644 index 0000000..7cdb0a3 Binary files /dev/null and b/font_files/Bobby-Jones-Soft-Free/TomChalky_Desktop_Licensing.pdf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.otf new file mode 100644 index 0000000..988d57f Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.ttf new file mode 100644 index 0000000..0f95ba8 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus Bold.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.otf new file mode 100644 index 0000000..2fb6e57 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.ttf new file mode 100644 index 0000000..aef9615 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Bonus.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.otf new file mode 100644 index 0000000..62f602c Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.ttf new file mode 100644 index 0000000..3822e22 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS01.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.otf new file mode 100644 index 0000000..b0e0c69 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.ttf new file mode 100644 index 0000000..2427b2f Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS02.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.otf new file mode 100644 index 0000000..63e0785 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.ttf new file mode 100644 index 0000000..dcfd239 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle SS03.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.otf new file mode 100644 index 0000000..252c282 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.ttf new file mode 100644 index 0000000..344b1c5 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle Sans.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle.otf b/font_files/Bouncy_Castle_Free/Bouncy Castle.otf new file mode 100644 index 0000000..7d37063 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle.otf differ diff --git a/font_files/Bouncy_Castle_Free/Bouncy Castle.ttf b/font_files/Bouncy_Castle_Free/Bouncy Castle.ttf new file mode 100644 index 0000000..96a1ec0 Binary files /dev/null and b/font_files/Bouncy_Castle_Free/Bouncy Castle.ttf differ diff --git a/font_files/Bouncy_Castle_Free/Licensing.txt b/font_files/Bouncy_Castle_Free/Licensing.txt new file mode 100644 index 0000000..dc4942d --- /dev/null +++ b/font_files/Bouncy_Castle_Free/Licensing.txt @@ -0,0 +1,5 @@ +Thank-you for downloading the Bouncy Castle font family! If you have any questions, please do not hesitate to email me tom@tomchalky.com + +This copy of Bouncy Castle is free for personal use - visit https://tomchalky.com/the-personal-license/ for more information regarding my personal licesne + +A Commercial License can be purchased here - https://tomchalky.com/bouncy-castle-font-family/ \ No newline at end of file diff --git a/font_files/BrixtonLine/BrixtonLn-Lt.otf b/font_files/BrixtonLine/BrixtonLn-Lt.otf new file mode 100644 index 0000000..349c92c Binary files /dev/null and b/font_files/BrixtonLine/BrixtonLn-Lt.otf differ diff --git a/font_files/BrixtonLine/BrixtonLn-Lt.ttf b/font_files/BrixtonLine/BrixtonLn-Lt.ttf new file mode 100644 index 0000000..0e7fec5 Binary files /dev/null and b/font_files/BrixtonLine/BrixtonLn-Lt.ttf differ diff --git a/font_files/BrixtonLine/BrixtonLn-Rg.otf b/font_files/BrixtonLine/BrixtonLn-Rg.otf new file mode 100644 index 0000000..fbef44f Binary files /dev/null and b/font_files/BrixtonLine/BrixtonLn-Rg.otf differ diff --git a/font_files/BrixtonLine/BrixtonLn-Rg.ttf b/font_files/BrixtonLine/BrixtonLn-Rg.ttf new file mode 100644 index 0000000..eab0b5d Binary files /dev/null and b/font_files/BrixtonLine/BrixtonLn-Rg.ttf differ diff --git a/font_files/Hectra/Hectra Bold.otf b/font_files/Hectra/Hectra Bold.otf new file mode 100644 index 0000000..26a648b Binary files /dev/null and b/font_files/Hectra/Hectra Bold.otf differ diff --git a/font_files/Hectra/Hectra Rg.otf b/font_files/Hectra/Hectra Rg.otf new file mode 100644 index 0000000..f911105 Binary files /dev/null and b/font_files/Hectra/Hectra Rg.otf differ diff --git a/font_files/Jimmy-Sans/JimmySans-Brush.otf b/font_files/Jimmy-Sans/JimmySans-Brush.otf new file mode 100644 index 0000000..1c37051 Binary files /dev/null and b/font_files/Jimmy-Sans/JimmySans-Brush.otf differ diff --git a/font_files/Jimmy-Sans/JimmySans-Rg.otf b/font_files/Jimmy-Sans/JimmySans-Rg.otf new file mode 100644 index 0000000..d889b21 Binary files /dev/null and b/font_files/Jimmy-Sans/JimmySans-Rg.otf differ diff --git a/font_files/Lance-TomChalky/LanceRg.otf b/font_files/Lance-TomChalky/LanceRg.otf new file mode 100644 index 0000000..eef06e0 Binary files /dev/null and b/font_files/Lance-TomChalky/LanceRg.otf differ diff --git a/font_files/Lance-TomChalky/LanceRg.ttf b/font_files/Lance-TomChalky/LanceRg.ttf new file mode 100644 index 0000000..546c368 Binary files /dev/null and b/font_files/Lance-TomChalky/LanceRg.ttf differ diff --git a/font_files/Lance-TomChalky/LanceSansRg.otf b/font_files/Lance-TomChalky/LanceSansRg.otf new file mode 100644 index 0000000..91afb8e Binary files /dev/null and b/font_files/Lance-TomChalky/LanceSansRg.otf differ diff --git a/font_files/Lance-TomChalky/LanceSansRg.ttf b/font_files/Lance-TomChalky/LanceSansRg.ttf new file mode 100644 index 0000000..ea49fc4 Binary files /dev/null and b/font_files/Lance-TomChalky/LanceSansRg.ttf differ diff --git a/font_files/Lance-TomChalky/TomChalky_Desktop_Licensing.pdf b/font_files/Lance-TomChalky/TomChalky_Desktop_Licensing.pdf new file mode 100644 index 0000000..7cdb0a3 Binary files /dev/null and b/font_files/Lance-TomChalky/TomChalky_Desktop_Licensing.pdf differ diff --git a/font_files/ScribblingTom.otf b/font_files/ScribblingTom.otf new file mode 100644 index 0000000..3b6417f Binary files /dev/null and b/font_files/ScribblingTom.otf differ diff --git a/font_files/Tallow-Pen/TallowSansTC-Pen.otf b/font_files/Tallow-Pen/TallowSansTC-Pen.otf new file mode 100644 index 0000000..f6eb96c Binary files /dev/null and b/font_files/Tallow-Pen/TallowSansTC-Pen.otf differ diff --git a/font_files/Tallow-Pen/TallowTC-Pen.otf b/font_files/Tallow-Pen/TallowTC-Pen.otf new file mode 100644 index 0000000..9f284e9 Binary files /dev/null and b/font_files/Tallow-Pen/TallowTC-Pen.otf differ diff --git a/font_files/font-acrylic-hand/other-files/tomchalky_desktop_licensing.pdf b/font_files/font-acrylic-hand/other-files/tomchalky_desktop_licensing.pdf new file mode 100755 index 0000000..7cdb0a3 Binary files /dev/null and b/font_files/font-acrylic-hand/other-files/tomchalky_desktop_licensing.pdf differ diff --git a/font_files/Acrylic Hand SVG/TTF/AcylicalHand-Thick.ttf b/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf similarity index 100% rename from font_files/Acrylic Hand SVG/TTF/AcylicalHand-Thick.ttf rename to font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf diff --git a/font_files/AGPX - Personal Use Only/OTF/AGPX.otf b/font_files/font-agpx/otf/agpx.otf similarity index 100% rename from font_files/AGPX - Personal Use Only/OTF/AGPX.otf rename to font_files/font-agpx/otf/agpx.otf diff --git a/font_files/AGPX - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-agpx/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/AGPX - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-agpx/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Airosol - Personal Use Only/OTF/Airosol.otf b/font_files/font-airosol/otf/airosol.otf similarity index 100% rename from font_files/Airosol - Personal Use Only/OTF/Airosol.otf rename to font_files/font-airosol/otf/airosol.otf diff --git a/font_files/Airosol - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-airosol/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Airosol - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-airosol/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/AlphaLyrae-Medium/OTF/AlphaLyrae-Medium.otf b/font_files/font-alphalyrae/otf/alphalyrae-medium.otf similarity index 100% rename from font_files/AlphaLyrae-Medium/OTF/AlphaLyrae-Medium.otf rename to font_files/font-alphalyrae/otf/alphalyrae-medium.otf diff --git a/font_files/Angular DCU/OTF/ANgular.otf b/font_files/font-angular/otf/angular.otf similarity index 100% rename from font_files/Angular DCU/OTF/ANgular.otf rename to font_files/font-angular/otf/angular.otf diff --git a/font_files/Angular DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-angular/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Angular DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-angular/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Arinoe - Zarma Type/OTF/Arinoe.otf b/font_files/font-arinoe/otf/arinoe.otf similarity index 100% rename from font_files/Arinoe - Zarma Type/OTF/Arinoe.otf rename to font_files/font-arinoe/otf/arinoe.otf diff --git a/font_files/Arinoe - Zarma Type/TTF/Arinoe.ttf b/font_files/font-arinoe/ttf/arinoe.ttf similarity index 100% rename from font_files/Arinoe - Zarma Type/TTF/Arinoe.ttf rename to font_files/font-arinoe/ttf/arinoe.ttf diff --git a/font_files/baduy/OTF/BADUY.otf b/font_files/font-baduy/otf/baduy.otf similarity index 100% rename from font_files/baduy/OTF/BADUY.otf rename to font_files/font-baduy/otf/baduy.otf diff --git a/font_files/baduy/other files/READ THIS.txt b/font_files/font-baduy/other-files/read-this.txt similarity index 100% rename from font_files/baduy/other files/READ THIS.txt rename to font_files/font-baduy/other-files/read-this.txt diff --git a/font_files/baduy/TTF/BADUY.ttf b/font_files/font-baduy/ttf/baduy.ttf similarity index 100% rename from font_files/baduy/TTF/BADUY.ttf rename to font_files/font-baduy/ttf/baduy.ttf diff --git a/font_files/bee honey/TTF/Bee Honey Regular.ttf b/font_files/font-bee-honey/ttf/bee-honey-regular.ttf similarity index 100% rename from font_files/bee honey/TTF/Bee Honey Regular.ttf rename to font_files/font-bee-honey/ttf/bee-honey-regular.ttf diff --git a/font_files/bee honey/TTF/Bee Honey SVG.ttf b/font_files/font-bee-honey/ttf/bee-honey-svg.ttf similarity index 100% rename from font_files/bee honey/TTF/Bee Honey SVG.ttf rename to font_files/font-bee-honey/ttf/bee-honey-svg.ttf diff --git a/font_files/Benford Demo/OTF/Benford DEMO.otf b/font_files/font-benford/otf/benford-demo.otf similarity index 100% rename from font_files/Benford Demo/OTF/Benford DEMO.otf rename to font_files/font-benford/otf/benford-demo.otf diff --git a/font_files/Benford Demo/TTF/Benford DEMO.ttf b/font_files/font-benford/ttf/benford-demo.ttf similarity index 100% rename from font_files/Benford Demo/TTF/Benford DEMO.ttf rename to font_files/font-benford/ttf/benford-demo.ttf diff --git a/font_files/brightsight 02/OTF/BRIGHTSIGHT02.otf b/font_files/font-brightsight-02/otf/brightsight02.otf similarity index 100% rename from font_files/brightsight 02/OTF/BRIGHTSIGHT02.otf rename to font_files/font-brightsight-02/otf/brightsight02.otf diff --git a/font_files/brightsight 02/TTF/BRIGHTSIGHT02.ttf b/font_files/font-brightsight-02/ttf/brightsight02.ttf similarity index 100% rename from font_files/brightsight 02/TTF/BRIGHTSIGHT02.ttf rename to font_files/font-brightsight-02/ttf/brightsight02.ttf diff --git a/font_files/broke/OTF/Broke-Bold.otf b/font_files/font-broke/otf/broke-bold.otf similarity index 100% rename from font_files/broke/OTF/Broke-Bold.otf rename to font_files/font-broke/otf/broke-bold.otf diff --git a/font_files/broke/OTF/Broke-Medium.otf b/font_files/font-broke/otf/broke-medium.otf similarity index 100% rename from font_files/broke/OTF/Broke-Medium.otf rename to font_files/font-broke/otf/broke-medium.otf diff --git a/font_files/broke/OTF/Broke-Regular.otf b/font_files/font-broke/otf/broke-regular.otf similarity index 100% rename from font_files/broke/OTF/Broke-Regular.otf rename to font_files/font-broke/otf/broke-regular.otf diff --git a/font_files/broke/OTF/BrokeFat-Black.otf b/font_files/font-broke/otf/brokefat-black.otf similarity index 100% rename from font_files/broke/OTF/BrokeFat-Black.otf rename to font_files/font-broke/otf/brokefat-black.otf diff --git a/font_files/broke/OTF/BrokeFat-Bold.otf b/font_files/font-broke/otf/brokefat-bold.otf similarity index 100% rename from font_files/broke/OTF/BrokeFat-Bold.otf rename to font_files/font-broke/otf/brokefat-bold.otf diff --git a/font_files/TBJ Buffy - Personal Use Only/OTF/Buffy.otf b/font_files/font-buffy/otf/buffy.otf similarity index 100% rename from font_files/TBJ Buffy - Personal Use Only/OTF/Buffy.otf rename to font_files/font-buffy/otf/buffy.otf diff --git a/font_files/Christmas Picture - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-buffy/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Christmas Picture - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-buffy/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/TBJ Buffy - Personal Use Only/TTF/Buffy.ttf b/font_files/font-buffy/ttf/buffy.ttf similarity index 100% rename from font_files/TBJ Buffy - Personal Use Only/TTF/Buffy.ttf rename to font_files/font-buffy/ttf/buffy.ttf diff --git a/font_files/font-cat-outline/other files/Cats.pxd b/font_files/font-cat-outline/other-files/cats.pxd similarity index 100% rename from font_files/font-cat-outline/other files/Cats.pxd rename to font_files/font-cat-outline/other-files/cats.pxd diff --git a/font_files/Cheeky Rabbit/OTF/CheekyRabbit.otf b/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf similarity index 100% rename from font_files/Cheeky Rabbit/OTF/CheekyRabbit.otf rename to font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf diff --git a/font_files/Cheeky Rabbit/TTF/Cheeky Rabbit.ttf b/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf similarity index 100% rename from font_files/Cheeky Rabbit/TTF/Cheeky Rabbit.ttf rename to font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf diff --git a/font_files/Christmas Picture - Personal Use Only/OTF/Christmas Picture.otf b/font_files/font-christmas-picture/otf/christmas-picture.otf similarity index 100% rename from font_files/Christmas Picture - Personal Use Only/OTF/Christmas Picture.otf rename to font_files/font-christmas-picture/otf/christmas-picture.otf diff --git a/font_files/Christmas Picture - Personal Use Only/other files/Christmas Picture.png b/font_files/font-christmas-picture/other-files/christmas-picture.png similarity index 100% rename from font_files/Christmas Picture - Personal Use Only/other files/Christmas Picture.png rename to font_files/font-christmas-picture/other-files/christmas-picture.png diff --git a/font_files/Chrone - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-christmas-picture/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Chrone - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-christmas-picture/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Christmas Picture - Personal Use Only/TTF/Christmas Picture.ttf b/font_files/font-christmas-picture/ttf/christmas-picture.ttf similarity index 100% rename from font_files/Christmas Picture - Personal Use Only/TTF/Christmas Picture.ttf rename to font_files/font-christmas-picture/ttf/christmas-picture.ttf diff --git a/font_files/Chrone - Personal Use Only/OTF/Chrone Demo.otf b/font_files/font-chrone/otf/chrone-demo.otf similarity index 100% rename from font_files/Chrone - Personal Use Only/OTF/Chrone Demo.otf rename to font_files/font-chrone/otf/chrone-demo.otf diff --git a/font_files/Clancy - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-chrone/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Clancy - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-chrone/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Chrone - Personal Use Only/TTF/Chrone Demo.ttf b/font_files/font-chrone/ttf/chrone-demo.ttf similarity index 100% rename from font_files/Chrone - Personal Use Only/TTF/Chrone Demo.ttf rename to font_files/font-chrone/ttf/chrone-demo.ttf diff --git a/font_files/Clancy Experience/OTF/Clancy Experience.otf b/font_files/font-clancy-experience/otf/clancy-experience.otf similarity index 100% rename from font_files/Clancy Experience/OTF/Clancy Experience.otf rename to font_files/font-clancy-experience/otf/clancy-experience.otf diff --git a/font_files/Clancy - Personal Use Only/OTF/._Clancy-Free.otf b/font_files/font-clancy/otf/_clancy-free.otf similarity index 100% rename from font_files/Clancy - Personal Use Only/OTF/._Clancy-Free.otf rename to font_files/font-clancy/otf/_clancy-free.otf diff --git a/font_files/Clancy - Personal Use Only/OTF/Clancy-Free.otf b/font_files/font-clancy/otf/clancy-free.otf similarity index 100% rename from font_files/Clancy - Personal Use Only/OTF/Clancy-Free.otf rename to font_files/font-clancy/otf/clancy-free.otf diff --git a/font_files/Creamy Dreams - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-clancy/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Creamy Dreams - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-clancy/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/code/OTF/CODE Bold.otf b/font_files/font-code/otf/code-bold.otf similarity index 100% rename from font_files/code/OTF/CODE Bold.otf rename to font_files/font-code/otf/code-bold.otf diff --git a/font_files/code/OTF/CODE Light.otf b/font_files/font-code/otf/code-light.otf similarity index 100% rename from font_files/code/OTF/CODE Light.otf rename to font_files/font-code/otf/code-light.otf diff --git a/font_files/code/other files/EULA Free Font License Ver. 2.0.pdf b/font_files/font-code/other-files/eula-free-font-license-ver.-2.0.pdf similarity index 100% rename from font_files/code/other files/EULA Free Font License Ver. 2.0.pdf rename to font_files/font-code/other-files/eula-free-font-license-ver.-2.0.pdf diff --git a/font_files/code/other files/Full Version from here.txt b/font_files/font-code/other-files/full-version-from-here.txt similarity index 100% rename from font_files/code/other files/Full Version from here.txt rename to font_files/font-code/other-files/full-version-from-here.txt diff --git a/font_files/code/other files/Intro Specimen.pdf b/font_files/font-code/other-files/intro-specimen.pdf similarity index 100% rename from font_files/code/other files/Intro Specimen.pdf rename to font_files/font-code/other-files/intro-specimen.pdf diff --git a/font_files/TBJ Coffina - Personal Use Only/OTF/Coffina.otf b/font_files/font-coffina/otf/coffina.otf similarity index 100% rename from font_files/TBJ Coffina - Personal Use Only/OTF/Coffina.otf rename to font_files/font-coffina/otf/coffina.otf diff --git a/font_files/DAMN Free /other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-coffina/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/DAMN Free /other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-coffina/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/TBJ Coffina - Personal Use Only/TTF/Coffina.ttf b/font_files/font-coffina/ttf/coffina.ttf similarity index 100% rename from font_files/TBJ Coffina - Personal Use Only/TTF/Coffina.ttf rename to font_files/font-coffina/ttf/coffina.ttf diff --git a/font_files/Creamy Dreams - Personal Use Only/OTF/Creamy Dreams.otf b/font_files/font-creamy-dreams/otf/creamy-dreams.otf similarity index 100% rename from font_files/Creamy Dreams - Personal Use Only/OTF/Creamy Dreams.otf rename to font_files/font-creamy-dreams/otf/creamy-dreams.otf diff --git a/font_files/DTMilagros - Personl Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-creamy-dreams/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/DTMilagros - Personl Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-creamy-dreams/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Cucurucho DCU/OTF/Cucurucho.otf b/font_files/font-cucurucho/otf/cucurucho.otf similarity index 100% rename from font_files/Cucurucho DCU/OTF/Cucurucho.otf rename to font_files/font-cucurucho/otf/cucurucho.otf diff --git a/font_files/Cucurucho DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-cucurucho/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Cucurucho DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-cucurucho/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/DAMN Free /OTF/DAMN.otf b/font_files/font-damn/otf/damn.otf similarity index 100% rename from font_files/DAMN Free /OTF/DAMN.otf rename to font_files/font-damn/otf/damn.otf diff --git a/font_files/Dirty Clouds - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-damn/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Dirty Clouds - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-damn/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/DAMN Free /TTF/DAMN.ttf b/font_files/font-damn/ttf/damn.ttf similarity index 100% rename from font_files/DAMN Free /TTF/DAMN.ttf rename to font_files/font-damn/ttf/damn.ttf diff --git a/font_files/TBJ Dance Blues - Personal Use Only/OTF/Dance Blues.otf b/font_files/font-dance-blues/otf/dance-blues.otf similarity index 100% rename from font_files/TBJ Dance Blues - Personal Use Only/OTF/Dance Blues.otf rename to font_files/font-dance-blues/otf/dance-blues.otf diff --git a/font_files/Futura 1986 - Free Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-dance-blues/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Futura 1986 - Free Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-dance-blues/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/TBJ Dance Blues - Personal Use Only/TTF/Dance Blues.ttf b/font_files/font-dance-blues/ttf/dance-blues.ttf similarity index 100% rename from font_files/TBJ Dance Blues - Personal Use Only/TTF/Dance Blues.ttf rename to font_files/font-dance-blues/ttf/dance-blues.ttf diff --git a/font_files/DEPOK CUBISM DCU/OTF/DEPOK CUBISM.otf b/font_files/font-depok-cubism/otf/depok-cubism.otf similarity index 100% rename from font_files/DEPOK CUBISM DCU/OTF/DEPOK CUBISM.otf rename to font_files/font-depok-cubism/otf/depok-cubism.otf diff --git a/font_files/DEPOK CUBISM DCU/OTF/Kosmos.otf b/font_files/font-depok-cubism/otf/kosmos.otf similarity index 100% rename from font_files/DEPOK CUBISM DCU/OTF/Kosmos.otf rename to font_files/font-depok-cubism/otf/kosmos.otf diff --git a/font_files/DEPOK CUBISM DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-depok-cubism/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/DEPOK CUBISM DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-depok-cubism/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/DEPOK CUBISM DCU/TTF/DEPOK CUBISM.ttf b/font_files/font-depok-cubism/ttf/depok-cubism.ttf similarity index 100% rename from font_files/DEPOK CUBISM DCU/TTF/DEPOK CUBISM.ttf rename to font_files/font-depok-cubism/ttf/depok-cubism.ttf diff --git a/font_files/Devil's Cut - Free To Try Personal Use Only/OTF/DevilsCut-Shadow-PersonalUseOnly.otf b/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf similarity index 100% rename from font_files/Devil's Cut - Free To Try Personal Use Only/OTF/DevilsCut-Shadow-PersonalUseOnly.otf rename to font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf diff --git a/font_files/Devil's Cut - Free To Try Personal Use Only/other files/- Personal Use License.pdf b/font_files/font-devils-cut/other-files/personal-use-license.pdf similarity index 100% rename from font_files/Devil's Cut - Free To Try Personal Use Only/other files/- Personal Use License.pdf rename to font_files/font-devils-cut/other-files/personal-use-license.pdf diff --git a/font_files/Dirty Clouds - Personal Use Only/OTF/Dirty Clouds.otf b/font_files/font-dirty-clouds/otf/dirty-clouds.otf similarity index 100% rename from font_files/Dirty Clouds - Personal Use Only/OTF/Dirty Clouds.otf rename to font_files/font-dirty-clouds/otf/dirty-clouds.otf diff --git a/font_files/Galaxia - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-dirty-clouds/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Galaxia - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-dirty-clouds/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/District DCU/OTF/District-Regular.otf b/font_files/font-district/otf/district-regular.otf similarity index 100% rename from font_files/District DCU/OTF/District-Regular.otf rename to font_files/font-district/otf/district-regular.otf diff --git a/font_files/District DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-district/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/District DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-district/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/District DCU/TTF/District.ttf b/font_files/font-district/ttf/district.ttf similarity index 100% rename from font_files/District DCU/TTF/District.ttf rename to font_files/font-district/ttf/district.ttf diff --git a/font_files/DK Frozen Memory/OTF/DK Frozen Memory.otf b/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf similarity index 100% rename from font_files/DK Frozen Memory/OTF/DK Frozen Memory.otf rename to font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf diff --git a/font_files/domaine display/OTF/Domaine Display - Bold.otf b/font_files/font-domaine-display/otf/domaine-display-bold.otf similarity index 100% rename from font_files/domaine display/OTF/Domaine Display - Bold.otf rename to font_files/font-domaine-display/otf/domaine-display-bold.otf diff --git a/font_files/DTMilagros - Personl Use Only/OTF/DT Milagros.otf b/font_files/font-dtmilagros/otf/dt-milagros.otf similarity index 100% rename from font_files/DTMilagros - Personl Use Only/OTF/DT Milagros.otf rename to font_files/font-dtmilagros/otf/dt-milagros.otf diff --git a/font_files/Gyanko Free/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-dtmilagros/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Gyanko Free/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-dtmilagros/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/ep-boxi/OTF/EP-Boxi-Bi.otf b/font_files/font-ep-boxi/otf/ep-boxi-bi.otf similarity index 100% rename from font_files/ep-boxi/OTF/EP-Boxi-Bi.otf rename to font_files/font-ep-boxi/otf/ep-boxi-bi.otf diff --git a/font_files/ep-boxi/OTF/EP-Boxi-Black.otf b/font_files/font-ep-boxi/otf/ep-boxi-black.otf similarity index 100% rename from font_files/ep-boxi/OTF/EP-Boxi-Black.otf rename to font_files/font-ep-boxi/otf/ep-boxi-black.otf diff --git a/font_files/ep-boxi/OTF/EP-Boxi-Bold.otf b/font_files/font-ep-boxi/otf/ep-boxi-bold.otf similarity index 100% rename from font_files/ep-boxi/OTF/EP-Boxi-Bold.otf rename to font_files/font-ep-boxi/otf/ep-boxi-bold.otf diff --git a/font_files/ep-boxi/OTF/EP-Boxi.otf b/font_files/font-ep-boxi/otf/ep-boxi.otf similarity index 100% rename from font_files/ep-boxi/OTF/EP-Boxi.otf rename to font_files/font-ep-boxi/otf/ep-boxi.otf diff --git a/font_files/ep-boxi/other files/demo.html b/font_files/font-ep-boxi/other-files/demo.html similarity index 100% rename from font_files/ep-boxi/other files/demo.html rename to font_files/font-ep-boxi/other-files/demo.html diff --git a/font_files/ep-boxi/other files/EPBoxiBi.woff b/font_files/font-ep-boxi/other-files/epboxibi.woff similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBi.woff rename to font_files/font-ep-boxi/other-files/epboxibi.woff diff --git a/font_files/ep-boxi/other files/EPBoxiBi.woff2 b/font_files/font-ep-boxi/other-files/epboxibi.woff2 similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBi.woff2 rename to font_files/font-ep-boxi/other-files/epboxibi.woff2 diff --git a/font_files/ep-boxi/other files/EPBoxiBlack.woff b/font_files/font-ep-boxi/other-files/epboxiblack.woff similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBlack.woff rename to font_files/font-ep-boxi/other-files/epboxiblack.woff diff --git a/font_files/ep-boxi/other files/EPBoxiBlack.woff2 b/font_files/font-ep-boxi/other-files/epboxiblack.woff2 similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBlack.woff2 rename to font_files/font-ep-boxi/other-files/epboxiblack.woff2 diff --git a/font_files/ep-boxi/other files/EPBoxiBold.woff b/font_files/font-ep-boxi/other-files/epboxibold.woff similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBold.woff rename to font_files/font-ep-boxi/other-files/epboxibold.woff diff --git a/font_files/ep-boxi/other files/EPBoxiBold.woff2 b/font_files/font-ep-boxi/other-files/epboxibold.woff2 similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiBold.woff2 rename to font_files/font-ep-boxi/other-files/epboxibold.woff2 diff --git a/font_files/ep-boxi/other files/EPBoxiRegular.woff b/font_files/font-ep-boxi/other-files/epboxiregular.woff similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiRegular.woff rename to font_files/font-ep-boxi/other-files/epboxiregular.woff diff --git a/font_files/ep-boxi/other files/EPBoxiRegular.woff2 b/font_files/font-ep-boxi/other-files/epboxiregular.woff2 similarity index 100% rename from font_files/ep-boxi/other files/EPBoxiRegular.woff2 rename to font_files/font-ep-boxi/other-files/epboxiregular.woff2 diff --git a/font_files/ep-boxi/other files/stylesheet.css b/font_files/font-ep-boxi/other-files/stylesheet.css similarity index 100% rename from font_files/ep-boxi/other files/stylesheet.css rename to font_files/font-ep-boxi/other-files/stylesheet.css diff --git a/font_files/f37 Stout/other files/F37Stout-Black.woff2 b/font_files/font-f37-stout/other-files/f37stout-black.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-Black.woff2 rename to font_files/font-f37-stout/other-files/f37stout-black.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BlackCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-blackcompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BlackCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-blackcompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BlackCondensed.woff2 b/font_files/font-f37-stout/other-files/f37stout-blackcondensed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BlackCondensed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-blackcondensed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BlackExpanded.woff2 b/font_files/font-f37-stout/other-files/f37stout-blackexpanded.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BlackExpanded.woff2 rename to font_files/font-f37-stout/other-files/f37stout-blackexpanded.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BlackUltraCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-blackultracompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BlackUltraCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-blackultracompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-Bold.woff2 b/font_files/font-f37-stout/other-files/f37stout-bold.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-Bold.woff2 rename to font_files/font-f37-stout/other-files/f37stout-bold.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BoldCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-boldcompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BoldCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-boldcompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BoldCondensed.woff2 b/font_files/font-f37-stout/other-files/f37stout-boldcondensed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BoldCondensed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-boldcondensed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BoldExpanded.woff2 b/font_files/font-f37-stout/other-files/f37stout-boldexpanded.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BoldExpanded.woff2 rename to font_files/font-f37-stout/other-files/f37stout-boldexpanded.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-BoldUltraCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-boldultracompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-BoldUltraCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-boldultracompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-Regular.woff2 b/font_files/font-f37-stout/other-files/f37stout-regular.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-Regular.woff2 rename to font_files/font-f37-stout/other-files/f37stout-regular.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-RegularCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-regularcompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-RegularCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-regularcompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-RegularCondensed.woff2 b/font_files/font-f37-stout/other-files/f37stout-regularcondensed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-RegularCondensed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-regularcondensed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-RegularExpanded.woff2 b/font_files/font-f37-stout/other-files/f37stout-regularexpanded.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-RegularExpanded.woff2 rename to font_files/font-f37-stout/other-files/f37stout-regularexpanded.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-RegularUltraCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-regularultracompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-RegularUltraCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-regularultracompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-Thin.woff2 b/font_files/font-f37-stout/other-files/f37stout-thin.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-Thin.woff2 rename to font_files/font-f37-stout/other-files/f37stout-thin.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-ThinCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-thincompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-ThinCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-thincompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-ThinCondensed.woff2 b/font_files/font-f37-stout/other-files/f37stout-thincondensed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-ThinCondensed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-thincondensed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-ThinExpanded.woff2 b/font_files/font-f37-stout/other-files/f37stout-thinexpanded.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-ThinExpanded.woff2 rename to font_files/font-f37-stout/other-files/f37stout-thinexpanded.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-ThinUltraCompressed.woff2 b/font_files/font-f37-stout/other-files/f37stout-thinultracompressed.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-ThinUltraCompressed.woff2 rename to font_files/font-f37-stout/other-files/f37stout-thinultracompressed.woff2 diff --git a/font_files/f37 Stout/other files/F37Stout-VF.woff2 b/font_files/font-f37-stout/other-files/f37stout-vf.woff2 similarity index 100% rename from font_files/f37 Stout/other files/F37Stout-VF.woff2 rename to font_files/font-f37-stout/other-files/f37stout-vf.woff2 diff --git a/font_files/f37 Stout/TTF/F37Stout-Black.ttc b/font_files/font-f37-stout/ttf/f37stout-black.ttc similarity index 100% rename from font_files/f37 Stout/TTF/F37Stout-Black.ttc rename to font_files/font-f37-stout/ttf/f37stout-black.ttc diff --git a/font_files/flyover/OTF/Flyover.otf b/font_files/font-flyover/otf/flyover.otf similarity index 100% rename from font_files/flyover/OTF/Flyover.otf rename to font_files/font-flyover/otf/flyover.otf diff --git a/font_files/flyover/other files/Flyover.jpg b/font_files/font-flyover/other-files/flyover.jpg similarity index 100% rename from font_files/flyover/other files/Flyover.jpg rename to font_files/font-flyover/other-files/flyover.jpg diff --git a/font_files/flyover/other files/More Info.txt b/font_files/font-flyover/other-files/more-info.txt similarity index 100% rename from font_files/flyover/other files/More Info.txt rename to font_files/font-flyover/other-files/more-info.txt diff --git a/font_files/flyover/other files/Read Me.pdf b/font_files/font-flyover/other-files/read-me.pdf similarity index 100% rename from font_files/flyover/other files/Read Me.pdf rename to font_files/font-flyover/other-files/read-me.pdf diff --git a/font_files/flyover/TTF/Flyover.ttf b/font_files/font-flyover/ttf/flyover.ttf similarity index 100% rename from font_files/flyover/TTF/Flyover.ttf rename to font_files/font-flyover/ttf/flyover.ttf diff --git a/font_files/friem/OTF/Friem-Regular.otf b/font_files/font-friem/otf/friem-regular.otf similarity index 100% rename from font_files/friem/OTF/Friem-Regular.otf rename to font_files/font-friem/otf/friem-regular.otf diff --git a/font_files/friem/OTF/Friem-Texture.otf b/font_files/font-friem/otf/friem-texture.otf similarity index 100% rename from font_files/friem/OTF/Friem-Texture.otf rename to font_files/font-friem/otf/friem-texture.otf diff --git a/font_files/friem/other files/Friem-Regular.woff b/font_files/font-friem/other-files/friem-regular.woff similarity index 100% rename from font_files/friem/other files/Friem-Regular.woff rename to font_files/font-friem/other-files/friem-regular.woff diff --git a/font_files/friem/other files/Friem-Regular.woff2 b/font_files/font-friem/other-files/friem-regular.woff2 similarity index 100% rename from font_files/friem/other files/Friem-Regular.woff2 rename to font_files/font-friem/other-files/friem-regular.woff2 diff --git a/font_files/friem/other files/Friem-Texture.woff b/font_files/font-friem/other-files/friem-texture.woff similarity index 100% rename from font_files/friem/other files/Friem-Texture.woff rename to font_files/font-friem/other-files/friem-texture.woff diff --git a/font_files/friem/other files/Friem-Texture.woff2 b/font_files/font-friem/other-files/friem-texture.woff2 similarity index 100% rename from font_files/friem/other files/Friem-Texture.woff2 rename to font_files/font-friem/other-files/friem-texture.woff2 diff --git a/font_files/friem/other files/Info.txt b/font_files/font-friem/other-files/info.txt similarity index 100% rename from font_files/friem/other files/Info.txt rename to font_files/font-friem/other-files/info.txt diff --git a/font_files/friem/TTF/Friem-Regular.ttf b/font_files/font-friem/ttf/friem-regular.ttf similarity index 100% rename from font_files/friem/TTF/Friem-Regular.ttf rename to font_files/font-friem/ttf/friem-regular.ttf diff --git a/font_files/friem/TTF/Friem-Texture.ttf b/font_files/font-friem/ttf/friem-texture.ttf similarity index 100% rename from font_files/friem/TTF/Friem-Texture.ttf rename to font_files/font-friem/ttf/friem-texture.ttf diff --git a/font_files/Funky Round DCU/OTF/funkyround.otf b/font_files/font-funky-round/otf/funkyround.otf similarity index 100% rename from font_files/Funky Round DCU/OTF/funkyround.otf rename to font_files/font-funky-round/otf/funkyround.otf diff --git a/font_files/Funky Round DCU/OTF/funkyround_striped.otf b/font_files/font-funky-round/otf/funkyround_striped.otf similarity index 100% rename from font_files/Funky Round DCU/OTF/funkyround_striped.otf rename to font_files/font-funky-round/otf/funkyround_striped.otf diff --git a/font_files/Funky Round DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-funky-round/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Funky Round DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-funky-round/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Futura 1986 - Free Personal Use/OTF/FUTURA1986.otf b/font_files/font-futura-1986/otf/futura1986.otf similarity index 100% rename from font_files/Futura 1986 - Free Personal Use/OTF/FUTURA1986.otf rename to font_files/font-futura-1986/otf/futura1986.otf diff --git a/font_files/Horseland - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-futura-1986/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Horseland - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-futura-1986/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Galaxia - Personal Use Only/OTF/Galaxia Personal Used - Flava.otf b/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf similarity index 100% rename from font_files/Galaxia - Personal Use Only/OTF/Galaxia Personal Used - Flava.otf rename to font_files/font-galaxia/otf/galaxia-personal-used-flava.otf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-galaxia/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-galaxia/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/gilbert/OTF/Gilbert-Bold Preview5.otf b/font_files/font-gilbert/otf/gilbert-bold-preview5.otf similarity index 100% rename from font_files/gilbert/OTF/Gilbert-Bold Preview5.otf rename to font_files/font-gilbert/otf/gilbert-bold-preview5.otf diff --git a/font_files/gilbert/OTF/Gilbert-Color Bold Preview5.otf b/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf similarity index 100% rename from font_files/gilbert/OTF/Gilbert-Color Bold Preview5.otf rename to font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf diff --git a/font_files/gilbert/other files/GilbertBoldPreview5.woff b/font_files/font-gilbert/other-files/gilbertboldpreview5.woff similarity index 100% rename from font_files/gilbert/other files/GilbertBoldPreview5.woff rename to font_files/font-gilbert/other-files/gilbertboldpreview5.woff diff --git a/font_files/gilbert/other files/GilbertColorBoldPreview5.woff b/font_files/font-gilbert/other-files/gilbertcolorboldpreview5.woff similarity index 100% rename from font_files/gilbert/other files/GilbertColorBoldPreview5.woff rename to font_files/font-gilbert/other-files/gilbertcolorboldpreview5.woff diff --git a/font_files/gilbert/other files/LICENSE.txt b/font_files/font-gilbert/other-files/license.txt similarity index 100% rename from font_files/gilbert/other files/LICENSE.txt rename to font_files/font-gilbert/other-files/license.txt diff --git a/font_files/gilbert/other files/README.txt b/font_files/font-gilbert/other-files/readme.txt similarity index 100% rename from font_files/gilbert/other files/README.txt rename to font_files/font-gilbert/other-files/readme.txt diff --git a/font_files/Gyanko Free/OTF/Gyanko-Regular.otf b/font_files/font-gyanko/otf/gyanko-regular.otf similarity index 100% rename from font_files/Gyanko Free/OTF/Gyanko-Regular.otf rename to font_files/font-gyanko/otf/gyanko-regular.otf diff --git a/font_files/Gyanko Free/OTF/Gyanko-Stencil.otf b/font_files/font-gyanko/otf/gyanko-stencil.otf similarity index 100% rename from font_files/Gyanko Free/OTF/Gyanko-Stencil.otf rename to font_files/font-gyanko/otf/gyanko-stencil.otf diff --git a/font_files/JOC - Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-gyanko/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/JOC - Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-gyanko/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/hello-headline/OTF/hello-headline.otf b/font_files/font-hello-headline/otf/hello-headline.otf similarity index 100% rename from font_files/hello-headline/OTF/hello-headline.otf rename to font_files/font-hello-headline/otf/hello-headline.otf diff --git a/font_files/Kompeni Free/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-horseland/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Kompeni Free/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-horseland/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Horseland - Personal Use Only/TTF/Wtf Horseland - was habib.ttf b/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf similarity index 100% rename from font_files/Horseland - Personal Use Only/TTF/Wtf Horseland - was habib.ttf rename to font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Bold.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-bold.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Bold.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-bold.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-BoldItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-bolditalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-BoldItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-bolditalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Book.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-book.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Book.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-book.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-BookItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-bookitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-BookItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-bookitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Italic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-italic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Italic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-italic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Light.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-light.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Light.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-light.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-LightItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-lightitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-LightItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-lightitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Medium.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-medium.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Medium.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-medium.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-MediumItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-mediumitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-MediumItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-mediumitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Regular.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-regular.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Regular.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-regular.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Semibold.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-semibold.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Semibold.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-semibold.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-SemiboldItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-semibolditalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-SemiboldItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-semibolditalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Thin.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-thin.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-Thin.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-thin.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-ThinItalic.otf b/font_files/font-idgrotesk/otf/_idgrotesktrial-thinitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/._IDGroteskTrial-ThinItalic.otf rename to font_files/font-idgrotesk/otf/_idgrotesktrial-thinitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Bold.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Bold.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-BoldItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-BoldItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Book.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Book.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-book.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-BookItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-BookItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Italic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Italic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Light.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Light.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-light.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-LightItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-LightItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Medium.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Medium.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-MediumItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-MediumItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Regular.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Regular.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Semibold.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Semibold.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-SemiboldItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-SemiboldItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Thin.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-Thin.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf diff --git a/font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-ThinItalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/OTF/IDGroteskTrial-ThinItalic.otf rename to font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Bold.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bold.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Bold.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bold.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-BoldItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bold.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-BoldItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bold.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Book.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bolditalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Book.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bolditalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-BookItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bolditalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-BookItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bolditalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Italic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-book.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Italic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-book.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Light.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-book.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Light.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-book.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-LightItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bookitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-LightItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bookitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Medium.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-bookitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Medium.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-bookitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-MediumItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-italic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-MediumItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-italic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Regular.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-italic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Regular.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-italic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Semibold.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-light.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Semibold.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-light.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-SemiboldItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-light.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-SemiboldItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-light.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Thin.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-lightitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-Thin.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-lightitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-ThinItalic.ttf b/font_files/font-idgrotesk/other-files/_idgrotesktrial-lightitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/._IDGroteskTrial-ThinItalic.ttf rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-lightitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Bold.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-medium.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Bold.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-medium.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Bold.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-medium.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Bold.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-medium.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BoldItalic.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-mediumitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BoldItalic.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-mediumitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BoldItalic.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-mediumitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BoldItalic.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-mediumitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Book.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-regular.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Book.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-regular.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Book.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-regular.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Book.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-regular.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BookItalic.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-semibold.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BookItalic.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-semibold.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BookItalic.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-semibold.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-BookItalic.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-semibold.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Italic.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-semibolditalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Italic.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-semibolditalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Italic.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-semibolditalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Italic.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-semibolditalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Light.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-thin.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Light.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-thin.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Light.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-thin.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Light.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-thin.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-LightItalic.woff b/font_files/font-idgrotesk/other-files/_idgrotesktrial-thinitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-LightItalic.woff rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-thinitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-LightItalic.woff2 b/font_files/font-idgrotesk/other-files/_idgrotesktrial-thinitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-LightItalic.woff2 rename to font_files/font-idgrotesk/other-files/_idgrotesktrial-thinitalic.woff2 diff --git a/font_files/MADE CARVING - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-idgrotesk/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-idgrotesk/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Bold.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-bold.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Bold.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bold.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Bold.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-bold.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Bold.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bold.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BoldItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-bolditalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BoldItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bolditalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BoldItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-bolditalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BoldItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bolditalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Book.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-book.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Book.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-book.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Book.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-book.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Book.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-book.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BookItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-bookitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BookItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bookitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BookItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-bookitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-BookItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-bookitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Italic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-italic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Italic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-italic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Italic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-italic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Italic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-italic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Light.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-light.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Light.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-light.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Light.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-light.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Light.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-light.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-LightItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-lightitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-LightItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-lightitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-LightItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-lightitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-LightItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-lightitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Medium.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-medium.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Medium.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-medium.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Medium.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-medium.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Medium.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-medium.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-MediumItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-mediumitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-MediumItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-mediumitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-MediumItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-mediumitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-MediumItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-mediumitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Regular.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-regular.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Regular.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-regular.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Regular.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-regular.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Regular.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-regular.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Semibold.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-semibold.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Semibold.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-semibold.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Semibold.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-semibold.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Semibold.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-semibold.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-SemiboldItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-semibolditalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-SemiboldItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-semibolditalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-SemiboldItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-semibolditalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-SemiboldItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-semibolditalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Thin.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-thin.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Thin.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-thin.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Thin.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-thin.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-Thin.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-thin.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-ThinItalic.woff b/font_files/font-idgrotesk/other-files/idgrotesktrial-thinitalic.woff similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-ThinItalic.woff rename to font_files/font-idgrotesk/other-files/idgrotesktrial-thinitalic.woff diff --git a/font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-ThinItalic.woff2 b/font_files/font-idgrotesk/other-files/idgrotesktrial-thinitalic.woff2 similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/IDGroteskTrial-ThinItalic.woff2 rename to font_files/font-idgrotesk/other-files/idgrotesktrial-thinitalic.woff2 diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Medium.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-bold.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Medium.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-bold.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Medium.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-bolditalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Medium.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-bolditalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-MediumItalic.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-book.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-MediumItalic.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-book.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-MediumItalic.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-bookitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-MediumItalic.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-bookitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Regular.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-italic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Regular.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-italic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Regular.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-light.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Regular.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-light.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Semibold.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-lightitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Semibold.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-lightitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Semibold.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-medium.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Semibold.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-medium.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-SemiboldItalic.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-mediumitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-SemiboldItalic.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-mediumitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-SemiboldItalic.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-regular.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-SemiboldItalic.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-regular.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Thin.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-semibold.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Thin.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-semibold.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Thin.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-semibolditalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-Thin.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-semibolditalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-ThinItalic.woff b/font_files/font-idgrotesk/ttf/_idgrotesktrial-thin.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-ThinItalic.woff rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-thin.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-ThinItalic.woff2 b/font_files/font-idgrotesk/ttf/_idgrotesktrial-thinitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/other files/._IDGroteskTrial-ThinItalic.woff2 rename to font_files/font-idgrotesk/ttf/_idgrotesktrial-thinitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Bold.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Bold.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-BoldItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-BoldItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Book.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Book.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-BookItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-BookItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Italic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Italic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Light.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Light.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-LightItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-LightItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Medium.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Medium.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-MediumItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-MediumItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Regular.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Regular.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Semibold.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Semibold.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-SemiboldItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-SemiboldItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Thin.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-Thin.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf diff --git a/font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-ThinItalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf similarity index 100% rename from font_files/IDGrotesk - Personal Use Only/TTF/IDGroteskTrial-ThinItalic.ttf rename to font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf diff --git a/font_files/JOC - Personal Use/OTF/JOC-Fill.otf b/font_files/font-joc/otf/joc-fill.otf similarity index 100% rename from font_files/JOC - Personal Use/OTF/JOC-Fill.otf rename to font_files/font-joc/otf/joc-fill.otf diff --git a/font_files/JOC - Personal Use/OTF/JOC-Line.otf b/font_files/font-joc/otf/joc-line.otf similarity index 100% rename from font_files/JOC - Personal Use/OTF/JOC-Line.otf rename to font_files/font-joc/otf/joc-line.otf diff --git a/font_files/Magic Painted Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-joc/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Magic Painted Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-joc/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Magnode - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-kompeni/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Magnode - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-kompeni/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Kompeni Free/TTF/Kompeni-Regular.ttf b/font_files/font-kompeni/ttf/kompeni-regular.ttf similarity index 100% rename from font_files/Kompeni Free/TTF/Kompeni-Regular.ttf rename to font_files/font-kompeni/ttf/kompeni-regular.ttf diff --git a/font_files/lab grotesk/OTF/LAB-Grotesk.otf b/font_files/font-lab-grotesk/otf/lab-grotesk.otf similarity index 100% rename from font_files/lab grotesk/OTF/LAB-Grotesk.otf rename to font_files/font-lab-grotesk/otf/lab-grotesk.otf diff --git a/font_files/Latcha - Free Personal Use Only/OTF/Latcha-PersonalUseOnly.otf b/font_files/font-latcha/otf/latcha-personaluseonly.otf similarity index 100% rename from font_files/Latcha - Free Personal Use Only/OTF/Latcha-PersonalUseOnly.otf rename to font_files/font-latcha/otf/latcha-personaluseonly.otf diff --git a/font_files/Latcha - Free Personal Use Only/other files/- Personal Use License.pdf b/font_files/font-latcha/other-files/personal-use-license.pdf similarity index 100% rename from font_files/Latcha - Free Personal Use Only/other files/- Personal Use License.pdf rename to font_files/font-latcha/other-files/personal-use-license.pdf diff --git a/font_files/Lexa/OTF/Lexa.otf b/font_files/font-lexa/otf/lexa.otf similarity index 100% rename from font_files/Lexa/OTF/Lexa.otf rename to font_files/font-lexa/otf/lexa.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Black.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Black.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Bold.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Bold.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-ExtraLight.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-ExtraLight.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Light.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Light.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Medium.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Medium.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Regular.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Regular.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-SemiBold.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-SemiBold.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Thin.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGOutlinePersonalUse-Thin.otf rename to font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Black.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Black.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Bold.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Bold.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-ExtraLight.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-ExtraLight.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Light.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Light.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Medium.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Medium.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Regular.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Regular.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-SemiBold.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-SemiBold.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf diff --git a/font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Thin.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf similarity index 100% rename from font_files/MADE CARVING - Personal Use Only/OTF/MADECARVINGPersonalUse-Thin.otf rename to font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf diff --git a/font_files/Morgon SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-made-carving/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Morgon SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-made-carving/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Black.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf similarity index 100% rename from font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Black.otf rename to font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf diff --git a/font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Light.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf similarity index 100% rename from font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Light.otf rename to font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf diff --git a/font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Medium.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf similarity index 100% rename from font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Medium.otf rename to font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf diff --git a/font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Regular.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf similarity index 100% rename from font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Regular.otf rename to font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf diff --git a/font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Thin.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf similarity index 100% rename from font_files/MADE INFINITY PERSONAL USE/OTF/MADEINFINITY PERSONALUSE-Thin.otf rename to font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf diff --git a/font_files/Magic Painted Personal Use Only/OTF/Magic Painted.otf b/font_files/font-magic-painted/otf/magic-painted.otf similarity index 100% rename from font_files/Magic Painted Personal Use Only/OTF/Magic Painted.otf rename to font_files/font-magic-painted/otf/magic-painted.otf diff --git a/font_files/Parasite Game - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-magic-painted/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Parasite Game - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-magic-painted/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Magnode - Personal Use Only/OTF/Magnode Trial Version.otf b/font_files/font-magnode/otf/magnode-trial-version.otf similarity index 100% rename from font_files/Magnode - Personal Use Only/OTF/Magnode Trial Version.otf rename to font_files/font-magnode/otf/magnode-trial-version.otf diff --git a/font_files/Magnode - Personal Use Only/OTF/xkcd.otf b/font_files/font-magnode/otf/xkcd.otf similarity index 100% rename from font_files/Magnode - Personal Use Only/OTF/xkcd.otf rename to font_files/font-magnode/otf/xkcd.otf diff --git a/font_files/Provisions - Free Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-magnode/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Provisions - Free Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-magnode/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Magnode - Personal Use Only/TTF/Magnode Trial Version.ttf b/font_files/font-magnode/ttf/magnode-trial-version.ttf similarity index 100% rename from font_files/Magnode - Personal Use Only/TTF/Magnode Trial Version.ttf rename to font_files/font-magnode/ttf/magnode-trial-version.ttf diff --git a/font_files/marker_notes/OTF/Marker Notes Italic.otf b/font_files/font-marker_notes/otf/marker-notes-italic.otf similarity index 100% rename from font_files/marker_notes/OTF/Marker Notes Italic.otf rename to font_files/font-marker_notes/otf/marker-notes-italic.otf diff --git a/font_files/marker_notes/OTF/Marker Notes.otf b/font_files/font-marker_notes/otf/marker-notes.otf similarity index 100% rename from font_files/marker_notes/OTF/Marker Notes.otf rename to font_files/font-marker_notes/otf/marker-notes.otf diff --git a/font_files/marker_notes/other files/license.txt b/font_files/font-marker_notes/other-files/license.txt similarity index 100% rename from font_files/marker_notes/other files/license.txt rename to font_files/font-marker_notes/other-files/license.txt diff --git a/font_files/marker_notes/other files/Marker Notes.png b/font_files/font-marker_notes/other-files/marker-notes.png similarity index 100% rename from font_files/marker_notes/other files/Marker Notes.png rename to font_files/font-marker_notes/other-files/marker-notes.png diff --git a/font_files/marker_notes/TTF/Marker Notes Italic.ttf b/font_files/font-marker_notes/ttf/marker-notes-italic.ttf similarity index 100% rename from font_files/marker_notes/TTF/Marker Notes Italic.ttf rename to font_files/font-marker_notes/ttf/marker-notes-italic.ttf diff --git a/font_files/marker_notes/TTF/Marker Notes.ttf b/font_files/font-marker_notes/ttf/marker-notes.ttf similarity index 100% rename from font_files/marker_notes/TTF/Marker Notes.ttf rename to font_files/font-marker_notes/ttf/marker-notes.ttf diff --git a/font_files/marvelo/OTF/Marvelo.otf b/font_files/font-marvelo/otf/marvelo.otf similarity index 100% rename from font_files/marvelo/OTF/Marvelo.otf rename to font_files/font-marvelo/otf/marvelo.otf diff --git a/font_files/marvelo/other files/readme.txt b/font_files/font-marvelo/other-files/readme.txt similarity index 100% rename from font_files/marvelo/other files/readme.txt rename to font_files/font-marvelo/other-files/readme.txt diff --git a/font_files/marvelo/TTF/Marvelo.ttf b/font_files/font-marvelo/ttf/marvelo.ttf similarity index 100% rename from font_files/marvelo/TTF/Marvelo.ttf rename to font_files/font-marvelo/ttf/marvelo.ttf diff --git a/font_files/mba slice mono font/OTF/MBASliceMono-Regular.otf b/font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf similarity index 100% rename from font_files/mba slice mono font/OTF/MBASliceMono-Regular.otf rename to font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf diff --git a/font_files/mba slice mono font/other files/MBASliceMono-Regular.woff b/font_files/font-mba-slice-mono/other-files/mbaslicemono-regular.woff similarity index 100% rename from font_files/mba slice mono font/other files/MBASliceMono-Regular.woff rename to font_files/font-mba-slice-mono/other-files/mbaslicemono-regular.woff diff --git a/font_files/miracode/TTF/font.ttf b/font_files/font-miracode/ttf/font.ttf similarity index 100% rename from font_files/miracode/TTF/font.ttf rename to font_files/font-miracode/ttf/font.ttf diff --git a/font_files/moon walk font/OTF/Moon Walk.otf b/font_files/font-moon-walk/otf/moon-walk.otf similarity index 100% rename from font_files/moon walk font/OTF/Moon Walk.otf rename to font_files/font-moon-walk/otf/moon-walk.otf diff --git a/font_files/moon walk font/TTF/Moon Walk.ttf b/font_files/font-moon-walk/ttf/moon-walk.ttf similarity index 100% rename from font_files/moon walk font/TTF/Moon Walk.ttf rename to font_files/font-moon-walk/ttf/moon-walk.ttf diff --git a/font_files/Morgon SVG - Personal Use Only/OTF/Morgon-PersonalUseOnly.otf b/font_files/font-morgon/otf/morgon-personaluseonly.otf similarity index 100% rename from font_files/Morgon SVG - Personal Use Only/OTF/Morgon-PersonalUseOnly.otf rename to font_files/font-morgon/otf/morgon-personaluseonly.otf diff --git a/font_files/Rigid Light - Free Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-morgon/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Rigid Light - Free Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-morgon/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/NafasManual - DCU/OTF/NafasManualRegular.otf b/font_files/font-nafasmanual/otf/nafasmanualregular.otf similarity index 100% rename from font_files/NafasManual - DCU/OTF/NafasManualRegular.otf rename to font_files/font-nafasmanual/otf/nafasmanualregular.otf diff --git a/font_files/NafasManual - DCU/OTF/NafasManualSliced.otf b/font_files/font-nafasmanual/otf/nafasmanualsliced.otf similarity index 100% rename from font_files/NafasManual - DCU/OTF/NafasManualSliced.otf rename to font_files/font-nafasmanual/otf/nafasmanualsliced.otf diff --git a/font_files/NafasManual - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-nafasmanual/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/NafasManual - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-nafasmanual/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/NafasManual - DCU/TTF/NafasManualRegular.ttf b/font_files/font-nafasmanual/ttf/nafasmanualregular.ttf similarity index 100% rename from font_files/NafasManual - DCU/TTF/NafasManualRegular.ttf rename to font_files/font-nafasmanual/ttf/nafasmanualregular.ttf diff --git a/font_files/NafasManual - DCU/TTF/NafasManualSliced.ttf b/font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf similarity index 100% rename from font_files/NafasManual - DCU/TTF/NafasManualSliced.ttf rename to font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Black.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Black.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Bold.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Bold.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Heavy.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Heavy.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Light.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Light.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Medium.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Medium.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Semi-Bold.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Semi-Bold.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Thin.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/fonnts.com-New-Kansas-Thin.otf rename to font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf diff --git a/font_files/new-kansas-black-wisabo/OTF/New Kansas Black.otf b/font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf similarity index 100% rename from font_files/new-kansas-black-wisabo/OTF/New Kansas Black.otf rename to font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf diff --git a/font_files/Nugia Vintage DCU/OTF/NugiaVintage.otf b/font_files/font-nugia-vintage/otf/nugiavintage.otf similarity index 100% rename from font_files/Nugia Vintage DCU/OTF/NugiaVintage.otf rename to font_files/font-nugia-vintage/otf/nugiavintage.otf diff --git a/font_files/Nugia Vintage DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-nugia-vintage/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Nugia Vintage DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-nugia-vintage/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Nugia Vintage DCU/TTF/NugiaVintage.ttf b/font_files/font-nugia-vintage/ttf/nugiavintage.ttf similarity index 100% rename from font_files/Nugia Vintage DCU/TTF/NugiaVintage.ttf rename to font_files/font-nugia-vintage/ttf/nugiavintage.ttf diff --git a/font_files/Overland DCU/OTF/Overland Regular.otf b/font_files/font-overland/otf/overland-regular.otf similarity index 100% rename from font_files/Overland DCU/OTF/Overland Regular.otf rename to font_files/font-overland/otf/overland-regular.otf diff --git a/font_files/Overland DCU/OTF/Overland.otf b/font_files/font-overland/otf/overland.otf similarity index 100% rename from font_files/Overland DCU/OTF/Overland.otf rename to font_files/font-overland/otf/overland.otf diff --git a/font_files/Overland DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-overland/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Overland DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-overland/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Parasite Game - Personal Use Only/other files/1a.png b/font_files/font-parasite-game/other-files/1a.png similarity index 100% rename from font_files/Parasite Game - Personal Use Only/other files/1a.png rename to font_files/font-parasite-game/other-files/1a.png diff --git a/font_files/Rondack SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-parasite-game/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Rondack SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-parasite-game/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Parasite Game - Personal Use Only/TTF/Parasite Game - Personal Use.ttf b/font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf similarity index 100% rename from font_files/Parasite Game - Personal Use Only/TTF/Parasite Game - Personal Use.ttf rename to font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf diff --git a/font_files/Patsy Sans Grotesque DCU/OTF/PatsySans-Italic.otf b/font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf similarity index 100% rename from font_files/Patsy Sans Grotesque DCU/OTF/PatsySans-Italic.otf rename to font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf diff --git a/font_files/Patsy Sans Grotesque DCU/OTF/PatsySans.otf b/font_files/font-patsy-sans-grotesque/otf/patsysans.otf similarity index 100% rename from font_files/Patsy Sans Grotesque DCU/OTF/PatsySans.otf rename to font_files/font-patsy-sans-grotesque/otf/patsysans.otf diff --git a/font_files/Patsy Sans Grotesque DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-patsy-sans-grotesque/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Patsy Sans Grotesque DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-patsy-sans-grotesque/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/pixelon/OTF/Pixelon-BF663182783f6a2.otf b/font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf similarity index 100% rename from font_files/pixelon/OTF/Pixelon-BF663182783f6a2.otf rename to font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf diff --git a/font_files/pixelon/other files/Befonts-License.txt b/font_files/font-pixelon/other-files/befonts-license.txt similarity index 100% rename from font_files/pixelon/other files/Befonts-License.txt rename to font_files/font-pixelon/other-files/befonts-license.txt diff --git a/font_files/pixelon/TTF/Pixelon-BF663182784222c.ttf b/font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf similarity index 100% rename from font_files/pixelon/TTF/Pixelon-BF663182784222c.ttf rename to font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf diff --git a/font_files/Plaztma - DCU/OTF/Plaztma Oblique.otf b/font_files/font-plaztma/otf/plaztma-oblique.otf similarity index 100% rename from font_files/Plaztma - DCU/OTF/Plaztma Oblique.otf rename to font_files/font-plaztma/otf/plaztma-oblique.otf diff --git a/font_files/Plaztma - DCU/OTF/Plaztma.otf b/font_files/font-plaztma/otf/plaztma.otf similarity index 100% rename from font_files/Plaztma - DCU/OTF/Plaztma.otf rename to font_files/font-plaztma/otf/plaztma.otf diff --git a/font_files/Plaztma - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-plaztma/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Plaztma - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-plaztma/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Plaztma - DCU/TTF/Plaztma Oblique.ttf b/font_files/font-plaztma/ttf/plaztma-oblique.ttf similarity index 100% rename from font_files/Plaztma - DCU/TTF/Plaztma Oblique.ttf rename to font_files/font-plaztma/ttf/plaztma-oblique.ttf diff --git a/font_files/Plaztma - DCU/TTF/Plaztma.ttf b/font_files/font-plaztma/ttf/plaztma.ttf similarity index 100% rename from font_files/Plaztma - DCU/TTF/Plaztma.ttf rename to font_files/font-plaztma/ttf/plaztma.ttf diff --git a/font_files/project space font/OTF/Project Space.otf b/font_files/font-project-space/otf/project-space.otf similarity index 100% rename from font_files/project space font/OTF/Project Space.otf rename to font_files/font-project-space/otf/project-space.otf diff --git a/font_files/project space font/other files/OFL-FAQ.txt b/font_files/font-project-space/other-files/ofl-faq.txt similarity index 100% rename from font_files/project space font/other files/OFL-FAQ.txt rename to font_files/font-project-space/other-files/ofl-faq.txt diff --git a/font_files/project space font/other files/OFL.txt b/font_files/font-project-space/other-files/ofl.txt similarity index 100% rename from font_files/project space font/other files/OFL.txt rename to font_files/font-project-space/other-files/ofl.txt diff --git a/font_files/project space font/TTF/Project Space.ttf b/font_files/font-project-space/ttf/project-space.ttf similarity index 100% rename from font_files/project space font/TTF/Project Space.ttf rename to font_files/font-project-space/ttf/project-space.ttf diff --git a/font_files/Provisions - Free Personal Use Only/OTF/Provisions-FreePersonalUseOnly.otf b/font_files/font-provisions/otf/provisions-freepersonaluseonly.otf similarity index 100% rename from font_files/Provisions - Free Personal Use Only/OTF/Provisions-FreePersonalUseOnly.otf rename to font_files/font-provisions/otf/provisions-freepersonaluseonly.otf diff --git a/font_files/Rusillaserif - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-provisions/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Rusillaserif - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-provisions/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/quasimoda family/OTF/BROTHER-Bold.otf b/font_files/font-quasimoda-family/otf/brother-bold.otf similarity index 100% rename from font_files/quasimoda family/OTF/BROTHER-Bold.otf rename to font_files/font-quasimoda-family/otf/brother-bold.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Black Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Black Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Black.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Black.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Bold Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Bold Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Bold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Bold.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda ExtraBold Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda ExtraBold Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-ExtraBold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-ExtraBold.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda ExtraLight Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda ExtraLight Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-ExtraLight.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-ExtraLight.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda HairLine Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda HairLine Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-HairLine.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-HairLine.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Heavy Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Heavy Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Heavy.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Heavy.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Light Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Light Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Light.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Light.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Medium Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Medium Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Medium.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Medium.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Regular.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Regular.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda SemiBold Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda SemiBold Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-SemiBold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-SemiBold.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda Thin Italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda Thin Italic.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf diff --git a/font_files/quasimoda family/OTF/lettersoup - Quasimoda-Thin.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf similarity index 100% rename from font_files/quasimoda family/OTF/lettersoup - Quasimoda-Thin.otf rename to font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf diff --git a/font_files/quasimoda family/other files/lettersoup commercial license.html b/font_files/font-quasimoda-family/other-files/lettersoup-commercial-license.html similarity index 100% rename from font_files/quasimoda family/other files/lettersoup commercial license.html rename to font_files/font-quasimoda-family/other-files/lettersoup-commercial-license.html diff --git a/font_files/quasimoda family/TTF/BROTHER-Bold.ttf b/font_files/font-quasimoda-family/ttf/brother-bold.ttf similarity index 100% rename from font_files/quasimoda family/TTF/BROTHER-Bold.ttf rename to font_files/font-quasimoda-family/ttf/brother-bold.ttf diff --git a/font_files/Revain - Demo/TTF/Revain-Regular.ttf b/font_files/font-revain/ttf/revain-regular.ttf similarity index 100% rename from font_files/Revain - Demo/TTF/Revain-Regular.ttf rename to font_files/font-revain/ttf/revain-regular.ttf diff --git a/font_files/Rigid Light - Free Personal Use Only/OTF/Rigid Display Light.otf b/font_files/font-rigid-light/otf/rigid-display-light.otf similarity index 100% rename from font_files/Rigid Light - Free Personal Use Only/OTF/Rigid Display Light.otf rename to font_files/font-rigid-light/otf/rigid-display-light.otf diff --git a/font_files/Sigitarian - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-rigid-light/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Sigitarian - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-rigid-light/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Rigid Light - Free Personal Use Only/TTF/Rigid Display Light.ttf b/font_files/font-rigid-light/ttf/rigid-display-light.ttf similarity index 100% rename from font_files/Rigid Light - Free Personal Use Only/TTF/Rigid Display Light.ttf rename to font_files/font-rigid-light/ttf/rigid-display-light.ttf diff --git a/font_files/rocky_monkey/OTF/Rocky Monkey Italic.otf b/font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf similarity index 100% rename from font_files/rocky_monkey/OTF/Rocky Monkey Italic.otf rename to font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf diff --git a/font_files/rocky_monkey/OTF/Rocky Monkey.otf b/font_files/font-rocky_monkey/otf/rocky-monkey.otf similarity index 100% rename from font_files/rocky_monkey/OTF/Rocky Monkey.otf rename to font_files/font-rocky_monkey/otf/rocky-monkey.otf diff --git a/font_files/rocky_monkey/other files/Rocky Monkey Italic.woff b/font_files/font-rocky_monkey/other-files/rocky-monkey-italic.woff similarity index 100% rename from font_files/rocky_monkey/other files/Rocky Monkey Italic.woff rename to font_files/font-rocky_monkey/other-files/rocky-monkey-italic.woff diff --git a/font_files/rocky_monkey/other files/Rocky Monkey Italic.woff2 b/font_files/font-rocky_monkey/other-files/rocky-monkey-italic.woff2 similarity index 100% rename from font_files/rocky_monkey/other files/Rocky Monkey Italic.woff2 rename to font_files/font-rocky_monkey/other-files/rocky-monkey-italic.woff2 diff --git a/font_files/rocky_monkey/other files/Rocky Monkey.woff b/font_files/font-rocky_monkey/other-files/rocky-monkey.woff similarity index 100% rename from font_files/rocky_monkey/other files/Rocky Monkey.woff rename to font_files/font-rocky_monkey/other-files/rocky-monkey.woff diff --git a/font_files/rocky_monkey/other files/Rocky Monkey.woff2 b/font_files/font-rocky_monkey/other-files/rocky-monkey.woff2 similarity index 100% rename from font_files/rocky_monkey/other files/Rocky Monkey.woff2 rename to font_files/font-rocky_monkey/other-files/rocky-monkey.woff2 diff --git a/font_files/rocky_monkey/TTF/Rocky Monkey Italic.ttf b/font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf similarity index 100% rename from font_files/rocky_monkey/TTF/Rocky Monkey Italic.ttf rename to font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf diff --git a/font_files/rocky_monkey/TTF/Rocky Monkey.ttf b/font_files/font-rocky_monkey/ttf/rocky-monkey.ttf similarity index 100% rename from font_files/rocky_monkey/TTF/Rocky Monkey.ttf rename to font_files/font-rocky_monkey/ttf/rocky-monkey.ttf diff --git a/font_files/Rondack SVG - Personal Use Only/OTF/Rondack-PersonalUseOnly.otf b/font_files/font-rondack/otf/rondack-personaluseonly.otf similarity index 100% rename from font_files/Rondack SVG - Personal Use Only/OTF/Rondack-PersonalUseOnly.otf rename to font_files/font-rondack/otf/rondack-personaluseonly.otf diff --git a/font_files/Signate Grotesk Black - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-rondack/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Signate Grotesk Black - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-rondack/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Runa DCU/OTF/Runa.otf b/font_files/font-runa/otf/runa.otf similarity index 100% rename from font_files/Runa DCU/OTF/Runa.otf rename to font_files/font-runa/otf/runa.otf diff --git a/font_files/Runa DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-runa/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Runa DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-runa/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Rusillaserif - Personal Use Only/OTF/Rusillaserif-Light.otf b/font_files/font-rusillaserif/otf/rusillaserif-light.otf similarity index 100% rename from font_files/Rusillaserif - Personal Use Only/OTF/Rusillaserif-Light.otf rename to font_files/font-rusillaserif/otf/rusillaserif-light.otf diff --git a/font_files/Rusillaserif - Personal Use Only/OTF/Rusillaserif-Regular.otf b/font_files/font-rusillaserif/otf/rusillaserif-regular.otf similarity index 100% rename from font_files/Rusillaserif - Personal Use Only/OTF/Rusillaserif-Regular.otf rename to font_files/font-rusillaserif/otf/rusillaserif-regular.otf diff --git a/font_files/Rusillaserif - Personal Use Only/other files/cover.jpg b/font_files/font-rusillaserif/other-files/cover.jpg similarity index 100% rename from font_files/Rusillaserif - Personal Use Only/other files/cover.jpg rename to font_files/font-rusillaserif/other-files/cover.jpg diff --git a/font_files/Spencer - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-rusillaserif/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Spencer - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-rusillaserif/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Rusillaserif - Personal Use Only/other files/Please Read Me.txt b/font_files/font-rusillaserif/other-files/please-read-me.txt similarity index 100% rename from font_files/Rusillaserif - Personal Use Only/other files/Please Read Me.txt rename to font_files/font-rusillaserif/other-files/please-read-me.txt diff --git a/font_files/ruska/OTF/RuskaDisplay-Regular.otf b/font_files/font-ruska/otf/ruskadisplay-regular.otf similarity index 100% rename from font_files/ruska/OTF/RuskaDisplay-Regular.otf rename to font_files/font-ruska/otf/ruskadisplay-regular.otf diff --git a/font_files/ruska/other files/Ruska - Commercial Use License.pdf b/font_files/font-ruska/other-files/ruska-commercial-use-license.pdf similarity index 100% rename from font_files/ruska/other files/Ruska - Commercial Use License.pdf rename to font_files/font-ruska/other-files/ruska-commercial-use-license.pdf diff --git a/font_files/scratches_3/OTF/Scratches.otf b/font_files/font-scratches/otf/scratches.otf similarity index 100% rename from font_files/scratches_3/OTF/Scratches.otf rename to font_files/font-scratches/otf/scratches.otf diff --git a/font_files/scratches_3/other files/MJTYPE-EULA.pdf b/font_files/font-scratches/other-files/mjtype-eula.pdf similarity index 100% rename from font_files/scratches_3/other files/MJTYPE-EULA.pdf rename to font_files/font-scratches/other-files/mjtype-eula.pdf diff --git a/font_files/scratches_3/other files/Read Me.txt b/font_files/font-scratches/other-files/read-me.txt similarity index 100% rename from font_files/scratches_3/other files/Read Me.txt rename to font_files/font-scratches/other-files/read-me.txt diff --git a/font_files/Sepura Light DCU/OTF/Sepura Light.otf b/font_files/font-sepura-light/otf/sepura-light.otf similarity index 100% rename from font_files/Sepura Light DCU/OTF/Sepura Light.otf rename to font_files/font-sepura-light/otf/sepura-light.otf diff --git a/font_files/Sepura Light DCU/other files/- Desktop Commercial Use License - Pixel Surplus copy 6.pdf b/font_files/font-sepura-light/other-files/desktop-commercial-use-license-pixel-surplus-copy-6.pdf similarity index 100% rename from font_files/Sepura Light DCU/other files/- Desktop Commercial Use License - Pixel Surplus copy 6.pdf rename to font_files/font-sepura-light/other-files/desktop-commercial-use-license-pixel-surplus-copy-6.pdf diff --git a/font_files/Sideboard - Personal Use Only/OTF/Sideboard-PersonalUseOnly.otf b/font_files/font-sideboard/otf/sideboard-personaluseonly.otf similarity index 100% rename from font_files/Sideboard - Personal Use Only/OTF/Sideboard-PersonalUseOnly.otf rename to font_files/font-sideboard/otf/sideboard-personaluseonly.otf diff --git a/font_files/Sideboard - Personal Use Only/other files/- Personal Use License.pdf b/font_files/font-sideboard/other-files/personal-use-license.pdf similarity index 100% rename from font_files/Sideboard - Personal Use Only/other files/- Personal Use License.pdf rename to font_files/font-sideboard/other-files/personal-use-license.pdf diff --git a/font_files/Siesta Serenade - Free Personal Use Only/OTF/SiestaSerenade-PersonalUseOnly.otf b/font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf similarity index 100% rename from font_files/Siesta Serenade - Free Personal Use Only/OTF/SiestaSerenade-PersonalUseOnly.otf rename to font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf diff --git a/font_files/Siesta Serenade - Free Personal Use Only/other files/- Personal Use License.pdf b/font_files/font-siesta-serenade/other-files/personal-use-license.pdf similarity index 100% rename from font_files/Siesta Serenade - Free Personal Use Only/other files/- Personal Use License.pdf rename to font_files/font-siesta-serenade/other-files/personal-use-license.pdf diff --git a/font_files/Sigitarian - Personal Use Only/OTF/Sigitarian.otf b/font_files/font-sigitarian/otf/sigitarian.otf similarity index 100% rename from font_files/Sigitarian - Personal Use Only/OTF/Sigitarian.otf rename to font_files/font-sigitarian/otf/sigitarian.otf diff --git a/font_files/Starship - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-sigitarian/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Starship - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-sigitarian/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Sigitarian - Personal Use Only/other files/Sigitarian.woff b/font_files/font-sigitarian/other-files/sigitarian.woff similarity index 100% rename from font_files/Sigitarian - Personal Use Only/other files/Sigitarian.woff rename to font_files/font-sigitarian/other-files/sigitarian.woff diff --git a/font_files/Sigitarian - Personal Use Only/TTF/Sigitarian.ttf b/font_files/font-sigitarian/ttf/sigitarian.ttf similarity index 100% rename from font_files/Sigitarian - Personal Use Only/TTF/Sigitarian.ttf rename to font_files/font-sigitarian/ttf/sigitarian.ttf diff --git a/font_files/Stockman - Free Non-Commercial Use/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-signate-grotesk-black/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Stockman - Free Non-Commercial Use/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-signate-grotesk-black/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Signate Grotesk Black - Personal Use Only/TTF/SignateGrotesk-Black.ttf b/font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf similarity index 100% rename from font_files/Signate Grotesk Black - Personal Use Only/TTF/SignateGrotesk-Black.ttf rename to font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf diff --git a/font_files/Silkshy - DCU/OTF/Silkshy.otf b/font_files/font-silkshy/otf/silkshy.otf similarity index 100% rename from font_files/Silkshy - DCU/OTF/Silkshy.otf rename to font_files/font-silkshy/otf/silkshy.otf diff --git a/font_files/Silkshy - DCU/OTF/SilkshyOblique.otf b/font_files/font-silkshy/otf/silkshyoblique.otf similarity index 100% rename from font_files/Silkshy - DCU/OTF/SilkshyOblique.otf rename to font_files/font-silkshy/otf/silkshyoblique.otf diff --git a/font_files/Silkshy - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-silkshy/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Silkshy - DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-silkshy/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/Silkshy - DCU/TTF/Silkshy.ttf b/font_files/font-silkshy/ttf/silkshy.ttf similarity index 100% rename from font_files/Silkshy - DCU/TTF/Silkshy.ttf rename to font_files/font-silkshy/ttf/silkshy.ttf diff --git a/font_files/Silkshy - DCU/TTF/SilkshyOblique.ttf b/font_files/font-silkshy/ttf/silkshyoblique.ttf similarity index 100% rename from font_files/Silkshy - DCU/TTF/SilkshyOblique.ttf rename to font_files/font-silkshy/ttf/silkshyoblique.ttf diff --git a/font_files/Spencer - Personal Use Only/OTF/Spencer.otf b/font_files/font-spencer/otf/spencer.otf similarity index 100% rename from font_files/Spencer - Personal Use Only/OTF/Spencer.otf rename to font_files/font-spencer/otf/spencer.otf diff --git a/font_files/Sunmore - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-spencer/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Sunmore - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-spencer/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Spencer - Personal Use Only/other files/Spencer.css b/font_files/font-spencer/other-files/spencer.css similarity index 100% rename from font_files/Spencer - Personal Use Only/other files/Spencer.css rename to font_files/font-spencer/other-files/spencer.css diff --git a/font_files/Spencer - Personal Use Only/other files/Spencer.html b/font_files/font-spencer/other-files/spencer.html similarity index 100% rename from font_files/Spencer - Personal Use Only/other files/Spencer.html rename to font_files/font-spencer/other-files/spencer.html diff --git a/font_files/Spencer - Personal Use Only/other files/Spencer.woff b/font_files/font-spencer/other-files/spencer.woff similarity index 100% rename from font_files/Spencer - Personal Use Only/other files/Spencer.woff rename to font_files/font-spencer/other-files/spencer.woff diff --git a/font_files/Spencer - Personal Use Only/other files/Spencer.woff2 b/font_files/font-spencer/other-files/spencer.woff2 similarity index 100% rename from font_files/Spencer - Personal Use Only/other files/Spencer.woff2 rename to font_files/font-spencer/other-files/spencer.woff2 diff --git a/font_files/Spencer - Personal Use Only/TTF/Spencer.ttf b/font_files/font-spencer/ttf/spencer.ttf similarity index 100% rename from font_files/Spencer - Personal Use Only/TTF/Spencer.ttf rename to font_files/font-spencer/ttf/spencer.ttf diff --git a/font_files/springwood_note/OTF/Springwood Line DEMO.otf b/font_files/font-springwood_note/otf/springwood-line-demo.otf similarity index 100% rename from font_files/springwood_note/OTF/Springwood Line DEMO.otf rename to font_files/font-springwood_note/otf/springwood-line-demo.otf diff --git a/font_files/springwood_note/OTF/Springwood Note DEMO.otf b/font_files/font-springwood_note/otf/springwood-note-demo.otf similarity index 100% rename from font_files/springwood_note/OTF/Springwood Note DEMO.otf rename to font_files/font-springwood_note/otf/springwood-note-demo.otf diff --git a/font_files/springwood_note/other files/Hanoded Fonts License & FAQ - READ ME!.pdf b/font_files/font-springwood_note/other-files/hanoded-fonts-license-&-faq-read-me!.pdf similarity index 100% rename from font_files/springwood_note/other files/Hanoded Fonts License & FAQ - READ ME!.pdf rename to font_files/font-springwood_note/other-files/hanoded-fonts-license-&-faq-read-me!.pdf diff --git a/font_files/springwood_note/other files/Springwood Poster 1.png b/font_files/font-springwood_note/other-files/springwood-poster-1.png similarity index 100% rename from font_files/springwood_note/other files/Springwood Poster 1.png rename to font_files/font-springwood_note/other-files/springwood-poster-1.png diff --git a/font_files/spritegraffiti/OTF/SpriteGraffiti-Extras.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf similarity index 100% rename from font_files/spritegraffiti/OTF/SpriteGraffiti-Extras.otf rename to font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf diff --git a/font_files/spritegraffiti/OTF/SpriteGraffiti-Regular.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf similarity index 100% rename from font_files/spritegraffiti/OTF/SpriteGraffiti-Regular.otf rename to font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf diff --git a/font_files/spritegraffiti/OTF/SpriteGraffiti-Shadow.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf similarity index 100% rename from font_files/spritegraffiti/OTF/SpriteGraffiti-Shadow.otf rename to font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf diff --git a/font_files/spritegraffiti/other files/FF EULA License ver2.2.pdf b/font_files/font-spritegraffiti/other-files/ff-eula-license-ver2.2.pdf similarity index 100% rename from font_files/spritegraffiti/other files/FF EULA License ver2.2.pdf rename to font_files/font-spritegraffiti/other-files/ff-eula-license-ver2.2.pdf diff --git a/font_files/spritegraffiti/other files/How to install your Fontfabric Fonts.pdf b/font_files/font-spritegraffiti/other-files/how-to-install-your-fontfabric-fonts.pdf similarity index 100% rename from font_files/spritegraffiti/other files/How to install your Fontfabric Fonts.pdf rename to font_files/font-spritegraffiti/other-files/how-to-install-your-fontfabric-fonts.pdf diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Extras.eot b/font_files/font-spritegraffiti/other-files/spritegraffiti-extras.eot similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Extras.eot rename to font_files/font-spritegraffiti/other-files/spritegraffiti-extras.eot diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Extras.woff b/font_files/font-spritegraffiti/other-files/spritegraffiti-extras.woff similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Extras.woff rename to font_files/font-spritegraffiti/other-files/spritegraffiti-extras.woff diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Extras.woff2 b/font_files/font-spritegraffiti/other-files/spritegraffiti-extras.woff2 similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Extras.woff2 rename to font_files/font-spritegraffiti/other-files/spritegraffiti-extras.woff2 diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Regular.eot b/font_files/font-spritegraffiti/other-files/spritegraffiti-regular.eot similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Regular.eot rename to font_files/font-spritegraffiti/other-files/spritegraffiti-regular.eot diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Regular.woff b/font_files/font-spritegraffiti/other-files/spritegraffiti-regular.woff similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Regular.woff rename to font_files/font-spritegraffiti/other-files/spritegraffiti-regular.woff diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Regular.woff2 b/font_files/font-spritegraffiti/other-files/spritegraffiti-regular.woff2 similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Regular.woff2 rename to font_files/font-spritegraffiti/other-files/spritegraffiti-regular.woff2 diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.eot b/font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.eot similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.eot rename to font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.eot diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.woff b/font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.woff similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.woff rename to font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.woff diff --git a/font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.woff2 b/font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.woff2 similarity index 100% rename from font_files/spritegraffiti/other files/SpriteGraffiti-Shadow.woff2 rename to font_files/font-spritegraffiti/other-files/spritegraffiti-shadow.woff2 diff --git a/font_files/spritegraffiti/TTF/SpriteGraffiti-Extras.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf similarity index 100% rename from font_files/spritegraffiti/TTF/SpriteGraffiti-Extras.ttf rename to font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf diff --git a/font_files/spritegraffiti/TTF/SpriteGraffiti-Regular.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf similarity index 100% rename from font_files/spritegraffiti/TTF/SpriteGraffiti-Regular.ttf rename to font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf diff --git a/font_files/spritegraffiti/TTF/SpriteGraffiti-Shadow.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf similarity index 100% rename from font_files/spritegraffiti/TTF/SpriteGraffiti-Shadow.ttf rename to font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf diff --git a/font_files/Starship - Personal Use Only/OTF/Starship.otf b/font_files/font-starship/otf/starship.otf similarity index 100% rename from font_files/Starship - Personal Use Only/OTF/Starship.otf rename to font_files/font-starship/otf/starship.otf diff --git a/font_files/TBJ Buffy - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-starship/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/TBJ Buffy - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-starship/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Starship - Personal Use Only/other files/Starship.woff b/font_files/font-starship/other-files/starship.woff similarity index 100% rename from font_files/Starship - Personal Use Only/other files/Starship.woff rename to font_files/font-starship/other-files/starship.woff diff --git a/font_files/Starship - Personal Use Only/TTF/Starship.ttf b/font_files/font-starship/ttf/starship.ttf similarity index 100% rename from font_files/Starship - Personal Use Only/TTF/Starship.ttf rename to font_files/font-starship/ttf/starship.ttf diff --git a/font_files/Stockman - Free Non-Commercial Use/OTF/Stockman-Demo-PersonalUseOnly.otf b/font_files/font-stockman/otf/stockman-demo-personaluseonly.otf similarity index 100% rename from font_files/Stockman - Free Non-Commercial Use/OTF/Stockman-Demo-PersonalUseOnly.otf rename to font_files/font-stockman/otf/stockman-demo-personaluseonly.otf diff --git a/font_files/TBJ Coffina - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-stockman/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/TBJ Coffina - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-stockman/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/stronghold by jeremy vessey/OTF/StrongHold-Italic.otf b/font_files/font-stronghold/otf/stronghold-italic.otf similarity index 100% rename from font_files/stronghold by jeremy vessey/OTF/StrongHold-Italic.otf rename to font_files/font-stronghold/otf/stronghold-italic.otf diff --git a/font_files/stronghold by jeremy vessey/OTF/StrongHold-Regular.otf b/font_files/font-stronghold/otf/stronghold-regular.otf similarity index 100% rename from font_files/stronghold by jeremy vessey/OTF/StrongHold-Regular.otf rename to font_files/font-stronghold/otf/stronghold-regular.otf diff --git a/font_files/stronghold by jeremy vessey/TTF/StrongHold-Italic.ttf b/font_files/font-stronghold/ttf/stronghold-italic.ttf similarity index 100% rename from font_files/stronghold by jeremy vessey/TTF/StrongHold-Italic.ttf rename to font_files/font-stronghold/ttf/stronghold-italic.ttf diff --git a/font_files/stronghold by jeremy vessey/TTF/StrongHold-Regular.ttf b/font_files/font-stronghold/ttf/stronghold-regular.ttf similarity index 100% rename from font_files/stronghold by jeremy vessey/TTF/StrongHold-Regular.ttf rename to font_files/font-stronghold/ttf/stronghold-regular.ttf diff --git a/font_files/TBJ Dance Blues - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-sunmore/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/TBJ Dance Blues - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-sunmore/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Sunmore - Personal Use Only/TTF/Sunmore Slant Free.ttf b/font_files/font-sunmore/ttf/sunmore-slant-free.ttf similarity index 100% rename from font_files/Sunmore - Personal Use Only/TTF/Sunmore Slant Free.ttf rename to font_files/font-sunmore/ttf/sunmore-slant-free.ttf diff --git a/font_files/TC_Kindred/OTF/Kindred.otf b/font_files/font-tc_kindred/otf/kindred.otf similarity index 100% rename from font_files/TC_Kindred/OTF/Kindred.otf rename to font_files/font-tc_kindred/otf/kindred.otf diff --git a/font_files/TC_Kindred/other files/Kindred-TC-Regular.sfd b/font_files/font-tc_kindred/other-files/kindred-tc-regular.sfd similarity index 100% rename from font_files/TC_Kindred/other files/Kindred-TC-Regular.sfd rename to font_files/font-tc_kindred/other-files/kindred-tc-regular.sfd diff --git a/font_files/TC_Kindred/other files/Kindred.woff b/font_files/font-tc_kindred/other-files/kindred.woff similarity index 100% rename from font_files/TC_Kindred/other files/Kindred.woff rename to font_files/font-tc_kindred/other-files/kindred.woff diff --git a/font_files/TCAcrylicHand/other files/download.woff b/font_files/font-tcacrylichand/other-files/download.woff similarity index 100% rename from font_files/TCAcrylicHand/other files/download.woff rename to font_files/font-tcacrylichand/other-files/download.woff diff --git a/font_files/TCAcrylicHand/other files/download2.woff b/font_files/font-tcacrylichand/other-files/download2.woff similarity index 100% rename from font_files/TCAcrylicHand/other files/download2.woff rename to font_files/font-tcacrylichand/other-files/download2.woff diff --git a/font_files/TCAcrylicHand/other files/download4.woff b/font_files/font-tcacrylichand/other-files/download4.woff similarity index 100% rename from font_files/TCAcrylicHand/other files/download4.woff rename to font_files/font-tcacrylichand/other-files/download4.woff diff --git a/font_files/TCAcrylicHand/other files/download5.woff b/font_files/font-tcacrylichand/other-files/download5.woff similarity index 100% rename from font_files/TCAcrylicHand/other files/download5.woff rename to font_files/font-tcacrylichand/other-files/download5.woff diff --git a/font_files/TCAcrylicHand/TTF/TCAcrylicHand.ttc b/font_files/font-tcacrylichand/ttf/tcacrylichand.ttc similarity index 100% rename from font_files/TCAcrylicHand/TTF/TCAcrylicHand.ttc rename to font_files/font-tcacrylichand/ttf/tcacrylichand.ttc diff --git a/font_files/Techla Free/OTF/Techla.otf b/font_files/font-techla/otf/techla.otf similarity index 100% rename from font_files/Techla Free/OTF/Techla.otf rename to font_files/font-techla/otf/techla.otf diff --git a/font_files/Techla Free/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-techla/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Techla Free/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-techla/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Teenage Yellow Star SVG - Personal Use Only/OTF/Teenage Yellow Star SVG.otf b/font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf similarity index 100% rename from font_files/Teenage Yellow Star SVG - Personal Use Only/OTF/Teenage Yellow Star SVG.otf rename to font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf diff --git a/font_files/Teenage Yellow Star SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-teenage-yellow-star/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Teenage Yellow Star SVG - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-teenage-yellow-star/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/TF Madcloud - Teenage Foundry Demo/OTF/TF Madloud DEMO.otf b/font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf similarity index 100% rename from font_files/TF Madcloud - Teenage Foundry Demo/OTF/TF Madloud DEMO.otf rename to font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf diff --git a/font_files/TF Madcloud - Teenage Foundry Demo/other files/Read me!.txt b/font_files/font-tf-madcloud-teenage-foundry/other-files/read-me!.txt similarity index 100% rename from font_files/TF Madcloud - Teenage Foundry Demo/other files/Read me!.txt rename to font_files/font-tf-madcloud-teenage-foundry/other-files/read-me!.txt diff --git a/font_files/TF Madcloud - Teenage Foundry Demo/other files/TF Madcloud.png b/font_files/font-tf-madcloud-teenage-foundry/other-files/tf-madcloud.png similarity index 100% rename from font_files/TF Madcloud - Teenage Foundry Demo/other files/TF Madcloud.png rename to font_files/font-tf-madcloud-teenage-foundry/other-files/tf-madcloud.png diff --git a/font_files/TF Madcloud - Teenage Foundry Demo/TTF/TF Madloud DEMO.ttf b/font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf similarity index 100% rename from font_files/TF Madcloud - Teenage Foundry Demo/TTF/TF Madloud DEMO.ttf rename to font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf diff --git a/font_files/The Great Outdoors - Free Personal Use/OTF/TheGreatOutdoors-Regular.otf b/font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf similarity index 100% rename from font_files/The Great Outdoors - Free Personal Use/OTF/TheGreatOutdoors-Regular.otf rename to font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf diff --git a/font_files/The Great Outdoors - Free Personal Use/OTF/TheGreatOutdoors-Rough-Regular.otf b/font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf similarity index 100% rename from font_files/The Great Outdoors - Free Personal Use/OTF/TheGreatOutdoors-Rough-Regular.otf rename to font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf diff --git a/font_files/The Great Outdoors - Free Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-the-great-outdoors/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/The Great Outdoors - Free Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-the-great-outdoors/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Thourenz Inked - Zarma Type/OTF/Thourenz Inked.otf b/font_files/font-thourenz-inked/otf/thourenz-inked.otf similarity index 100% rename from font_files/Thourenz Inked - Zarma Type/OTF/Thourenz Inked.otf rename to font_files/font-thourenz-inked/otf/thourenz-inked.otf diff --git a/font_files/Thourenz Inked - Zarma Type/TTF/Thourenz Inked.ttf b/font_files/font-thourenz-inked/ttf/thourenz-inked.ttf similarity index 100% rename from font_files/Thourenz Inked - Zarma Type/TTF/Thourenz Inked.ttf rename to font_files/font-thourenz-inked/ttf/thourenz-inked.ttf diff --git a/font_files/Tyler Handwriting/OTF/Tyler Handwriting.otf b/font_files/font-tyler-handwriting/otf/tyler-handwriting.otf similarity index 100% rename from font_files/Tyler Handwriting/OTF/Tyler Handwriting.otf rename to font_files/font-tyler-handwriting/otf/tyler-handwriting.otf diff --git a/font_files/Valofire - Personal Use Only/other files/1.png b/font_files/font-valofire/other-files/1.png similarity index 100% rename from font_files/Valofire - Personal Use Only/other files/1.png rename to font_files/font-valofire/other-files/1.png diff --git a/font_files/Valofire - Personal Use Only/TTF/Valofire-Personal-Used.ttf b/font_files/font-valofire/ttf/valofire-personal-used.ttf similarity index 100% rename from font_files/Valofire - Personal Use Only/TTF/Valofire-Personal-Used.ttf rename to font_files/font-valofire/ttf/valofire-personal-used.ttf diff --git a/font_files/Vampire Mansion - Personal Use Only/OTF/Vampire Mansion.otf b/font_files/font-vampire-mansion/otf/vampire-mansion.otf similarity index 100% rename from font_files/Vampire Mansion - Personal Use Only/OTF/Vampire Mansion.otf rename to font_files/font-vampire-mansion/otf/vampire-mansion.otf diff --git a/font_files/Vampire Mansion - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-vampire-mansion/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Vampire Mansion - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-vampire-mansion/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Vaselina Free/OTF/Veselina - Script.otf b/font_files/font-vaselina/otf/veselina-script.otf similarity index 100% rename from font_files/Vaselina Free/OTF/Veselina - Script.otf rename to font_files/font-vaselina/otf/veselina-script.otf diff --git a/font_files/Vaselina Free/OTF/Veselina.otf b/font_files/font-vaselina/otf/veselina.otf similarity index 100% rename from font_files/Vaselina Free/OTF/Veselina.otf rename to font_files/font-vaselina/otf/veselina.otf diff --git a/font_files/Vaselina Free/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-vaselina/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Vaselina Free/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-vaselina/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/virus_killer/OTF/Virus Killer.otf b/font_files/font-virus_killer/otf/virus-killer.otf similarity index 100% rename from font_files/virus_killer/OTF/Virus Killer.otf rename to font_files/font-virus_killer/otf/virus-killer.otf diff --git a/font_files/virus_killer/other files/More Info.txt b/font_files/font-virus_killer/other-files/more-info.txt similarity index 100% rename from font_files/virus_killer/other files/More Info.txt rename to font_files/font-virus_killer/other-files/more-info.txt diff --git a/font_files/virus_killer/other files/Read Me.pdf b/font_files/font-virus_killer/other-files/read-me.pdf similarity index 100% rename from font_files/virus_killer/other files/Read Me.pdf rename to font_files/font-virus_killer/other-files/read-me.pdf diff --git a/font_files/virus_killer/other files/Virus Killer.jpg b/font_files/font-virus_killer/other-files/virus-killer.jpg similarity index 100% rename from font_files/virus_killer/other files/Virus Killer.jpg rename to font_files/font-virus_killer/other-files/virus-killer.jpg diff --git a/font_files/virus_killer/TTF/Virus Killer.ttf b/font_files/font-virus_killer/ttf/virus-killer.ttf similarity index 100% rename from font_files/virus_killer/TTF/Virus Killer.ttf rename to font_files/font-virus_killer/ttf/virus-killer.ttf diff --git a/font_files/West River - Free Personal Use Only/OTF/WestRiver-Regular.otf b/font_files/font-west-river/otf/westriver-regular.otf similarity index 100% rename from font_files/West River - Free Personal Use Only/OTF/WestRiver-Regular.otf rename to font_files/font-west-river/otf/westriver-regular.otf diff --git a/font_files/West River - Free Personal Use Only/other files/- Personal Use License.pdf b/font_files/font-west-river/other-files/personal-use-license.pdf similarity index 100% rename from font_files/West River - Free Personal Use Only/other files/- Personal Use License.pdf rename to font_files/font-west-river/other-files/personal-use-license.pdf diff --git a/font_files/WHTPNY - Personal Use/OTF/WHTPNY LCD.otf b/font_files/font-whtpny/otf/whtpny-lcd.otf similarity index 100% rename from font_files/WHTPNY - Personal Use/OTF/WHTPNY LCD.otf rename to font_files/font-whtpny/otf/whtpny-lcd.otf diff --git a/font_files/WHTPNY - Personal Use/OTF/WHTPNY.otf b/font_files/font-whtpny/otf/whtpny.otf similarity index 100% rename from font_files/WHTPNY - Personal Use/OTF/WHTPNY.otf rename to font_files/font-whtpny/otf/whtpny.otf diff --git a/font_files/WHTPNY - Personal Use/OTF/WHTPNYPX.otf b/font_files/font-whtpny/otf/whtpnypx.otf similarity index 100% rename from font_files/WHTPNY - Personal Use/OTF/WHTPNYPX.otf rename to font_files/font-whtpny/otf/whtpnypx.otf diff --git a/font_files/WHTPNY - Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-whtpny/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/WHTPNY - Personal Use/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-whtpny/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/wistonia signature/OTF/Wistonia Signature.otf b/font_files/font-wistonia-signature/otf/wistonia-signature.otf similarity index 100% rename from font_files/wistonia signature/OTF/Wistonia Signature.otf rename to font_files/font-wistonia-signature/otf/wistonia-signature.otf diff --git a/font_files/wistonia signature/TTF/Wistonia Signature.ttf b/font_files/font-wistonia-signature/ttf/wistonia-signature.ttf similarity index 100% rename from font_files/wistonia signature/TTF/Wistonia Signature.ttf rename to font_files/font-wistonia-signature/ttf/wistonia-signature.ttf diff --git a/font_files/WS Lowen - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-ws-lowen/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/WS Lowen - Personal Use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-ws-lowen/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/WS Lowen - Personal Use Only/TTF/WS Lowen Demo.ttf b/font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf similarity index 100% rename from font_files/WS Lowen - Personal Use Only/TTF/WS Lowen Demo.ttf rename to font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf diff --git a/font_files/WT Karsa Mono DCU/OTF/WT Karsa Mono.otf b/font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf similarity index 100% rename from font_files/WT Karsa Mono DCU/OTF/WT Karsa Mono.otf rename to font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf diff --git a/font_files/WT Karsa Mono DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf b/font_files/font-wt-karsa-mono/other-files/desktop-commercial-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/WT Karsa Mono DCU/other files/- Desktop Commercial Use License - Pixel Surplus.pdf rename to font_files/font-wt-karsa-mono/other-files/desktop-commercial-use-license-pixel-surplus.pdf diff --git a/font_files/WT Karsa Mono DCU/TTF/WT Karsa Mono.ttf b/font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf similarity index 100% rename from font_files/WT Karsa Mono DCU/TTF/WT Karsa Mono.ttf rename to font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf diff --git a/font_files/youchat/OTF/Youchat.otf b/font_files/font-youchat/otf/youchat.otf similarity index 100% rename from font_files/youchat/OTF/Youchat.otf rename to font_files/font-youchat/otf/youchat.otf diff --git a/font_files/youchat/other files/More Info.txt b/font_files/font-youchat/other-files/more-info.txt similarity index 100% rename from font_files/youchat/other files/More Info.txt rename to font_files/font-youchat/other-files/more-info.txt diff --git a/font_files/youchat/other files/Read Me.pdf b/font_files/font-youchat/other-files/read-me.pdf similarity index 100% rename from font_files/youchat/other files/Read Me.pdf rename to font_files/font-youchat/other-files/read-me.pdf diff --git a/font_files/youchat/other files/Youchat.jpg b/font_files/font-youchat/other-files/youchat.jpg similarity index 100% rename from font_files/youchat/other files/Youchat.jpg rename to font_files/font-youchat/other-files/youchat.jpg diff --git a/font_files/youchat/TTF/Youchat.ttf b/font_files/font-youchat/ttf/youchat.ttf similarity index 100% rename from font_files/youchat/TTF/Youchat.ttf rename to font_files/font-youchat/ttf/youchat.ttf diff --git a/font_files/Zebra - Personal use Only/OTF/zebra-neg.otf b/font_files/font-zebra/otf/zebra-neg.otf similarity index 100% rename from font_files/Zebra - Personal use Only/OTF/zebra-neg.otf rename to font_files/font-zebra/otf/zebra-neg.otf diff --git a/font_files/Zebra - Personal use Only/OTF/zebra.otf b/font_files/font-zebra/otf/zebra.otf similarity index 100% rename from font_files/Zebra - Personal use Only/OTF/zebra.otf rename to font_files/font-zebra/otf/zebra.otf diff --git a/font_files/Zebra - Personal use Only/other files/- Free Personal Use License - Pixel Surplus.pdf b/font_files/font-zebra/other-files/free-personal-use-license-pixel-surplus.pdf similarity index 100% rename from font_files/Zebra - Personal use Only/other files/- Free Personal Use License - Pixel Surplus.pdf rename to font_files/font-zebra/other-files/free-personal-use-license-pixel-surplus.pdf diff --git a/font_files/Zebra - Personal use Only/ttf/zebra-neg.ttf b/font_files/font-zebra/ttf/zebra-neg.ttf similarity index 100% rename from font_files/Zebra - Personal use Only/ttf/zebra-neg.ttf rename to font_files/font-zebra/ttf/zebra-neg.ttf diff --git a/font_files/Zebra - Personal use Only/ttf/zebra.ttf b/font_files/font-zebra/ttf/zebra.ttf similarity index 100% rename from font_files/Zebra - Personal use Only/ttf/zebra.ttf rename to font_files/font-zebra/ttf/zebra.ttf diff --git a/font_files/graham_hand/GrahamHand.otf b/font_files/graham_hand/GrahamHand.otf new file mode 100644 index 0000000..174b095 Binary files /dev/null and b/font_files/graham_hand/GrahamHand.otf differ diff --git a/font_files/graham_hand/GrahamHand.ttf b/font_files/graham_hand/GrahamHand.ttf new file mode 100644 index 0000000..ca1b264 Binary files /dev/null and b/font_files/graham_hand/GrahamHand.ttf differ diff --git a/remove_empty_folders.sh b/remove_empty_folders.sh deleted file mode 100644 index 623e8e0..0000000 --- a/remove_empty_folders.sh +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/bash - -mydir=$(dirname "$0") -cd $mydir/font_files -find . -type d -empty -delete - -#find . -name '.setup_complete' -type f -delete \ No newline at end of file