You may have seen that the historical museum of Basel in remembrence of the first print of a bible edited by Erasmus of Rotterdam in the year 1516 published a font called «Erasmus MMXVI». You can download the fonts here.
It's a beautiful fonts and using LuaTeX you can easily access its features, see here:
\documentclass[parskip=half]{scrartcl}
\usepackage{fontspec}
\usepackage{polyglossia, microtype}
\setdefaultlanguage{german}
\setmainfont[Ligatures=TeX, RawFeature=+pnum]{ErasmusMMXVI}
\newfontfamily{\ErasmSupNum}[VerticalPosition=Superior]{ErasmusMMXVI}
\deffootnotemark{\ErasmSupNum\thefootnotemark}
\newfontfamily{\ErasmUpper}[LetterSpace=6.0]{ErasmusMMXVI}
\addtokomafont{title}{\ErasmUpper}
\title{ERASMUS MMXVI}
\subtitle{OPEN-TYPE FEATURES}
\date{}
\begin{document}
\maketitle{}
Ligaturen: fi fl ff fleißig
Hochzahlen für Fußnoten\footnote{Ha!}
Superior: \textsuperscript{1234567890}
Proportional: 0123456789
\fontspec[RawFeature=+tnum]{ErasmusMMXVI}
Monospaced: 0123456789
\itshape
Ligaturen: fi fl ff ffi ffl fh tr
fleissig\\
{\addfontfeatures{RawFeature=+swsh}
fleissig (Style=Swash)}
Hochzahlen für Fußnoten\footnote{Ha!}
Superior: \textsuperscript{1234567890}
\fontspec[RawFeature=+pnum]{ErasmusMMXVI}
Proportional: 0123456789
\end{document}
% Local Variables:
% TeX-engine: luatex
% End:
Unfortunately, the section sign "§" is missing, which I need. Provided, I use LuaTeX to compile, is there any possibilty to use the "§" from another font, let's say Linux Biolinum?
I found this question here: Substitute one glyph for an alternate glyph of another stylistic set But the trouble there is to substitute the glyph from another style of the same fonts. Here in Erasmus MMXVI there is no § at all...

