Originally I can set the figure title to bold by the following:
import Matplotlib.pyplot as plt plt.title(\"Test\",fontweight=\"bold\")
bu
fontweight is the argument for the fig.suptitle() function. So this should work for you, fig.suptitle("Test",fontweight='bold')
fig.suptitle("Test",fontweight='bold')