├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── OFL.txt ├── README.md ├── docs └── 1-header.gif ├── fonts ├── otf │ ├── InstrumentSerif-Italic.otf │ └── InstrumentSerif-Regular.otf ├── ttf │ ├── InstrumentSerif-Italic.ttf │ └── InstrumentSerif-Regular.ttf └── webfonts │ ├── InstrumentSerif-Italic.woff2 │ └── InstrumentSerif-Regular.woff2 ├── requirements.txt └── sources ├── Instrument_Serif.glyphs ├── Instrument_Serif_Italic.glyphs └── config.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *(Autosaved).glyphs 3 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/README.md -------------------------------------------------------------------------------- /docs/1-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/docs/1-header.gif -------------------------------------------------------------------------------- /fonts/otf/InstrumentSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/otf/InstrumentSerif-Italic.otf -------------------------------------------------------------------------------- /fonts/otf/InstrumentSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/otf/InstrumentSerif-Regular.otf -------------------------------------------------------------------------------- /fonts/ttf/InstrumentSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/ttf/InstrumentSerif-Italic.ttf -------------------------------------------------------------------------------- /fonts/ttf/InstrumentSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/ttf/InstrumentSerif-Regular.ttf -------------------------------------------------------------------------------- /fonts/webfonts/InstrumentSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/webfonts/InstrumentSerif-Italic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/InstrumentSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/fonts/webfonts/InstrumentSerif-Regular.woff2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/Instrument_Serif.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/sources/Instrument_Serif.glyphs -------------------------------------------------------------------------------- /sources/Instrument_Serif_Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/sources/Instrument_Serif_Italic.glyphs -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/instrument-serif/HEAD/sources/config.yaml --------------------------------------------------------------------------------