Bug report
Bug summary
Font found via FontManager.find_font() but not when using it in Figure.text()

Code for reproduction
For easier testing. Same as the screenshot above.
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontManager, FontProperties
mgr = FontManager()
mgr.findfont(FontProperties(family='Calibri'))
fig = plt.figure()
fig.text(0.5, 0.5, 'matplotlib', fontfamily='Calibri')
Bug report
Bug summary
Font found via
FontManager.find_font()but not when using it inFigure.text()Code for reproduction
For easier testing. Same as the screenshot above.