├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── GrenzeGotisch-01.png ├── GrenzeGotisch-02.png ├── LICENSE.md ├── Makefile ├── OFL.txt ├── README.md ├── fonts ├── otf │ ├── GrenzeGotisch-Black.otf │ ├── GrenzeGotisch-Bold.otf │ ├── GrenzeGotisch-ExtraBold.otf │ ├── GrenzeGotisch-ExtraLight.otf │ ├── GrenzeGotisch-Light.otf │ ├── GrenzeGotisch-Medium.otf │ ├── GrenzeGotisch-Regular.otf │ ├── GrenzeGotisch-SemiBold.otf │ └── GrenzeGotisch-Thin.otf ├── ttf │ ├── GrenzeGotisch-Black.ttf │ ├── GrenzeGotisch-Bold.ttf │ ├── GrenzeGotisch-ExtraBold.ttf │ ├── GrenzeGotisch-ExtraLight.ttf │ ├── GrenzeGotisch-Light.ttf │ ├── GrenzeGotisch-Medium.ttf │ ├── GrenzeGotisch-Regular.ttf │ ├── GrenzeGotisch-SemiBold.ttf │ └── GrenzeGotisch-Thin.ttf ├── variable │ └── GrenzeGotisch[wght].ttf └── webfonts │ ├── GrenzeGotisch-Black.woff2 │ ├── GrenzeGotisch-Bold.woff2 │ ├── GrenzeGotisch-ExtraBold.woff2 │ ├── GrenzeGotisch-ExtraLight.woff2 │ ├── GrenzeGotisch-Light.woff2 │ ├── GrenzeGotisch-Medium.woff2 │ ├── GrenzeGotisch-Regular.woff2 │ ├── GrenzeGotisch-SemiBold.woff2 │ └── GrenzeGotisch-Thin.woff2 ├── requirements.txt └── sources ├── GrenzeGotisch.glyphs └── config.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- 1 | name: Build font and specimen 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | - name: Set up Python 3.8 11 | uses: actions/setup-python@v2 12 | with: 13 | python-version: 3.8 14 | - name: Install Linux dependencies 15 | run: | 16 | sudo snap install yq 17 | - name: Build font 18 | run: make build 19 | - name: Check with fontbakery 20 | run: make test 21 | continue-on-error: true 22 | - name: Generate proofs 23 | run: make proof 24 | - name: Gather 25 | run: | 26 | mkdir for-gh-pages 27 | mv fontbakery-report.html for-gh-pages 28 | mv proof/* for-gh-pages 29 | - name: Archive artifacts 30 | uses: actions/upload-artifact@v2 31 | with: 32 | name: Artifacts 33 | path: | 34 | for-gh-pages 35 | - name: Remove temp folder 36 | run: | 37 | rm -rf for-gh-pages -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | venv 3 | build.stamp 4 | proof 5 | 6 | # OS generated files # 7 | ###################### 8 | .DS_Store 9 | .DS_Store? 10 | ._* 11 | .Spotlight-V100 12 | .Trashes 13 | ehthumbs.db 14 | Thumbs.db 15 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | # This is the official list of project authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS.txt file. 3 | # See the latter for an explanation. 4 | # 5 | # Names should be added to this file as: 6 | # Name or Organization 7 | 8 | Omnibus-Type 9 | Renata Polastri -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | # This is the list of people who have contributed to this project, 2 | # and includes those not listed in AUTHORS.txt because they are not 3 | # copyright authors. For example, company employees may be listed 4 | # here because their company holds the copyright and is listed there. 5 | # 6 | # When adding J Random Contributor's name to this file, either J's 7 | # name or J's organization's name should be added to AUTHORS.txt 8 | # 9 | # Names should be added to this file as: 10 | # Name 11 | 12 | Oscar Guerrero Cañizares 13 | Pablo Cosgaya 14 | Yorlmar Campos -------------------------------------------------------------------------------- /GrenzeGotisch-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/GrenzeGotisch-01.png -------------------------------------------------------------------------------- /GrenzeGotisch-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/GrenzeGotisch-02.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020, Omnibus-Type (www.omnibus-type.com | omnibus.type@gmail.com). 2 | 3 | 4 | *This Font Software is licensed under the SIL Open Font License, Version 1.1. 5 | This license is copied below, and is also available with a FAQ at: 6 | http://scripts.sil.org/OFL* 7 | 8 | 9 | # SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | 11 | 12 | ### PREAMBLE 13 | 14 | The goals of the Open Font License (OFL) are to stimulate worldwide 15 | development of collaborative font projects, to support the font creation 16 | efforts of academic and linguistic communities, and to provide a free and 17 | open framework in which fonts may be shared and improved in partnership 18 | with others. 19 | 20 | The OFL allows the licensed fonts to be used, studied, modified and 21 | redistributed freely as long as they are not sold by themselves. The 22 | fonts, including any derivative works, can be bundled, embedded, 23 | redistributed and/or sold with any software provided that any reserved 24 | names are not used by derivative works. The fonts and derivatives, 25 | however, cannot be released under any other type of license. The 26 | requirement for fonts to remain under this license does not apply 27 | to any document created using the fonts or their derivatives. 28 | 29 | ### DEFINITIONS 30 | 31 | "Font Software" refers to the set of files released by the Copyright 32 | Holder(s) under this license and clearly marked as such. This may 33 | include source files, build scripts and documentation. 34 | 35 | "Reserved Font Name" refers to any names specified as such after the 36 | copyright statement(s). 37 | 38 | "Original Version" refers to the collection of Font Software components as 39 | distributed by the Copyright Holder(s). 40 | 41 | "Modified Version" refers to any derivative made by adding to, deleting, 42 | or substituting -- in part or in whole -- any of the components of the 43 | Original Version, by changing formats or by porting the Font Software to a 44 | new environment. 45 | 46 | "Author" refers to any designer, engineer, programmer, technical 47 | writer or other person who contributed to the Font Software. 48 | 49 | ### PERMISSION & CONDITIONS 50 | 51 | Permission is hereby granted, free of charge, to any person obtaining 52 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 53 | redistribute, and sell modified and unmodified copies of the Font 54 | Software, subject to the following conditions: 55 | 56 | 1. Neither the Font Software nor any of its individual components, 57 | in Original or Modified Versions, may be sold by itself. 58 | 59 | 2. Original or Modified Versions of the Font Software may be bundled, 60 | redistributed and/or sold with any software, provided that each copy 61 | contains the above copyright notice and this license. These can be 62 | included either as stand-alone text files, human-readable headers or 63 | in the appropriate machine-readable metadata fields within text or 64 | binary files as long as those fields can be easily viewed by the user. 65 | 66 | 3. No Modified Version of the Font Software may use the Reserved Font 67 | Name(s) unless explicit written permission is granted by the corresponding 68 | Copyright Holder. This restriction only applies to the primary font name as 69 | presented to the users. 70 | 71 | 4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font 72 | Software shall not be used to promote, endorse or advertise any 73 | Modified Version, except to acknowledge the contribution(s) of the 74 | Copyright Holder(s) and the Author(s) or with their explicit written 75 | permission. 76 | 77 | 5. The Font Software, modified or unmodified, in part or in whole, 78 | must be distributed entirely under this license, and must not be 79 | distributed under any other license. The requirement for fonts to 80 | remain under this license does not apply to any document created 81 | using the Font Software. 82 | 83 | ### TERMINATION 84 | 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | ### DISCLAIMER 89 | 90 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 91 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 92 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 93 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 94 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 95 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 96 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 97 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 98 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | SOURCES=$(shell yq e '.sources.[] | sub("^","sources/")' sources/config.yaml ) 2 | FAMILY=$(shell yq e '.familyName' sources/config.yaml ) 3 | 4 | help: 5 | @echo "###" 6 | @echo "# Build targets for $(FAMILY)" 7 | @echo "###" 8 | @echo 9 | @echo " make build: Builds the fonts and places them in the fonts/ directory" 10 | @echo " make test: Tests the fonts with fontbakery" 11 | @echo " make proof: Creates HTML proof documents in the proof/ directory" 12 | @echo 13 | 14 | build: build.stamp sources/config.yaml $(SOURCES) 15 | 16 | venv: venv/touchfile 17 | 18 | build.stamp: venv 19 | . venv/bin/activate; gftools builder sources/config.yaml && touch build.stamp 20 | 21 | venv/touchfile: requirements.txt 22 | test -d venv || python3 -m venv venv 23 | . venv/bin/activate; pip install -Ur requirements.txt 24 | touch venv/touchfile 25 | 26 | test: venv build.stamp 27 | . venv/bin/activate; fontbakery check-googlefonts --html fontbakery-report.html --ghmarkdown fontbakery-report.md $(shell find fonts -type f) 28 | 29 | proof: venv build.stamp 30 | . venv/bin/activate; gftools gen-html proof $(shell find fonts/ttf -type f) -o proof 31 | 32 | clean: 33 | rm -rf venv 34 | find -iname "*.pyc" -delete 35 | -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright 2020 The Grenze Gotisch Project Authors (https://github.com/Omnibus-Type/Grenze-Gotisch) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Grenze-Gotisch family 2 | 3 | **Omnibus-Type** 4 | *SIL Open Font License, 1.1* 5 | 6 | Grenze Gotisch: a peculiar version of Grenze, now presenting Blackletter uppercase letters and little dramatic details in certain lowercase letters, which intensify its expressive burden. 7 | 8 | 9 | ![Sample of Grenze-Gotisch Family.](GrenzeGotisch-01.png "Grenze Gotisch Family") 10 | ![Sample of Grenze-Gotisch Family.](GrenzeGotisch-02.png "Grenze Gotisch Family") 11 | 12 | #### Grenze Gotisch Family contains: 13 | 14 | * Thin 15 | * ExtraLight 16 | * Light 17 | * Regular 18 | * Medium 19 | * Semibold 20 | * Bold 21 | * ExtraBold 22 | * Black 23 | 24 | To contribute to the project contact [Omnibus Type](http://omnibus-type.com/). 25 | 26 | ### Designers 27 | 28 | * Renata Polastri 29 | 30 | ## Building 31 | 32 | Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build. 33 | 34 | If you particularly want to build fonts manually on your own computer, you will need to install the [`yq` utility](https://github.com/mikefarah/yq). On OS X with Homebrew, type `brew install yq`; on Linux, try `snap install yq`; if all else fails, try the instructions on the linked page. 35 | 36 | Then: 37 | 38 | * `make build` will produce font files. 39 | * `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests. 40 | * `make proof` will generate HTML proof files. 41 | 42 | ## License 43 | 44 | Copyright (c) 2020, Omnibus-Type (www.omnibus-type.com | omnibus.type@gmail.com) 45 | 46 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 47 | This license is copied below, and is also available with a FAQ at 48 | http://scripts.sil.org/OFL 49 | 50 | ## Repository Layout 51 | 52 | This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow. 53 | 54 | 55 | ====== 56 | ## FONTLOG for the Grenze Gotisch fonts 57 | 58 | This file provides detailed information on the Grenze Gotisch font software. 59 | This information should be distributed along with the Grenze Gotisch fonts and any derivative works. 60 | 61 | ### Grenze Gotisch is a typeface family that supports Unicode language range: 62 | 63 | * Basic Latin U+0020-U+007E 64 | * Latin-1 Supplement U+00A0-U+00FF 65 | * Latin Extended-A U+0100-U+017F 66 | * Latin Extended Additional* U+1E00-U+1EFF *(111/256) 67 | 68 | **Character map to support MS Codepages:** 69 | * 1252 Latin-1 70 | * 1250 Latin-2 (Easter Europe) 71 | * 1254 Turkish 72 | * 1257 Windows Baltic 73 | * 1258 Vietnamese 74 | * Mac Roman 75 | 76 | *To contribute to the project contact Omnibus-Type at omnibus.type@gmail.com* 77 | 78 | **04 Jan 2020 (v.1.000) Omnibus-Type** 79 | - Initial release 80 | 81 | ### Acknowledgements 82 | 83 | If you make modifications be sure to add your name (N), email (E), web-address 84 | (if you have one) (W) and description (D). This list is in alphabetical order. 85 | 86 | **N:** **Oscar Guerrero Cañizares** 87 | **E:** omnibus.type@gmail.com 88 | **W:** http://www.omnibus-type.com 89 | **D:** Typeface development 90 | 91 | **N:** **Pablo Cosgaya** 92 | **E:** omnibus.type@gmail.com 93 | **W:** http://www.omnibus-type.com 94 | **D:** Typeface development 95 | 96 | **N:** **Renata Polastri** 97 | **E:** omnibus.type@gmail.com 98 | **W:** http://www.omnibus-type.com 99 | **D:** Designer 100 | -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Black.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Light.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-SemiBold.otf -------------------------------------------------------------------------------- /fonts/otf/GrenzeGotisch-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/otf/GrenzeGotisch-Thin.otf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Black.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/GrenzeGotisch-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/ttf/GrenzeGotisch-Thin.ttf -------------------------------------------------------------------------------- /fonts/variable/GrenzeGotisch[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/variable/GrenzeGotisch[wght].ttf -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Black.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/GrenzeGotisch-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnibus-Type/Grenze-Gotisch/7b5eac166bc3b2a519f98b5c124cb7a11670cc7b/fonts/webfonts/GrenzeGotisch-Thin.woff2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fontmake>=2.4 2 | fontbakery>=0.7 3 | gftools>=0.7 4 | -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- 1 | sources: 2 | - GrenzeGotisch.glyphs 3 | axisOrder: 4 | - wght 5 | familyName: Grenze Gotisch 6 | stat: 7 | GrenzeGotisch[wght].ttf: 8 | - name: Weight 9 | tag: wght 10 | values: 11 | - name: Thin 12 | value: 100 13 | - name: ExtraLight 14 | value: 200 15 | - name: Light 16 | value: 300 17 | - name: Regular 18 | value: 400 19 | linkedValue: 700 20 | flags: 2 21 | - name: Medium 22 | value: 500 23 | - name: SemiBold 24 | value: 600 25 | - name: Bold 26 | value: 700 27 | - name: ExtraBold 28 | value: 800 29 | - name: Black 30 | value: 900 --------------------------------------------------------------------------------