token_type is a parameter in Access Token generate call to Authorization server which essentially represent that how a access_token will be generated and also presented to it for resource access calls.
You provide token_type in access token generation call to authorization server.
If you give Bearer ( Default on most implementation), access_token is generated and send back you. Simple understanding of Bearer can be, who ever brings the bearer token give the access. One valid token and no question asked. On the other hand if you choose Mac and sign_type(default hmac-sha-1 on most implementation), the access token is generated and kept as secret in Key Manager as a attribute, and encrypted secret is sent back as access_token
yes you can use your own implementation of token_type, but that might not make much sense as developers will need to follow your process rather than standard implementations of OAuth.