Solution:1
Yes you can use the custom fields by checking from the top bar of the WordPress page admin section. However, this is not a good solution as it will likely be confusing after you have multiple custom fields which is sure.
You can use the custom meta box function for this and add the functionality to your page which is easier done through a plugin called advanced custom fields which you already seem to know.
So, if you don’t want to use the plugin instead you want to do it custom then there is a function callend add_meta_box. This function allows you to add a seperate box on a specific post_type.
For Quick Tutorial: https://www.sitepoint.com/adding-custom-meta-boxes-to-wordpress/
Hope this gives an overview on meta boxes. Thanx.